<!-- Scripts that go in the Head tag -->

<!-- begin close window function
	function closeWindow()
	{
		if (popWin && !popWin.closed)
		{
			popWin.close()
		}
	}

function popWin(fileName,windowWidth,windowHeight) {
     myWin = window.open('','popWin','scrollbars=no,directories=no,status=no,resizable=no,toolbar=no,copyhistory=no,location=no,menubar=no,width='+windowWidth+',height='+windowHeight+',,top=200,left=200');
     myWin.location.href = fileName;

}


function phpPopWin(fileName,windowWidth,windowHeight) {
     myWin = window.open('','popWin','scrollbars=no,directories=no,status=no,resizable=no,toolbar=no,copyhistory=no,location=no,menubar=no,width='+windowWidth+',height='+windowHeight+',,top=200,left=200');
     myWin.location.href = fileName;
}
//-->


