var reqwin, width=400, height=240;
var winheight, winwidth, x, y;

function inforequest(to, condoname)
{
winheight=240;
winwidth= winheight + (width-height);
x = 15;
y = x;

goreq(to, condoname);
}

function goreq(to, condoname)
{
if (reqwin != null) {if (!reqwin.closed) reqwin.close();}

reqwin = window.open("http://www.gulfcondos.com/requestinfo.htm?" + to + ',' + condoname,"","height=" + winheight + ",width=" + winwidth + ",scrollbars,resizable");

if (!document.layers && !document.all) {return;}

expandreq();
}

function expandreq()
{
reqwin.resizeBy(x, y);
if (winheight >= height) {return;}
winheight += y;
winwidth += x;
expandreq();
}


