<!-- begin body scripts

function closeWindow()
{
	if (popWindow && !popWindow.closed)
	{
		popWindow.close()
	}
}

function msPopWin(fileName,windowWidth,windowHeight) {
     myWin = window.open('','WindowName','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;
}
//-->