<!--
function openWindows()
{
openWindow01('popup.asp','gp',20,20,525,450);

}

function openWindow01( fileName, winName, xLocation, yLocation, width, height )
{
	gNewWindow = window.open('popup.asp', '', 'toolbar=no,location=no,scrollbars=yes,resizable=no,width='+width+',height='+height );
	gNewWindow.moveTo( xLocation, yLocation );
	gNewWindow.focus();
}


//-->