winWidth = 1024;
winheight = 768;
if (screen)
{
	winWidth = screen.width;
	winHeight = screen.height;
}
if (ie==1 && screen)
{
	winWidth = screen.availWidth;
	winHeight = screen.availHeight-28;
}
function popupWindow(win){
newWindow = window.open(win,'newWin','toolbar=no,location=no,scrollbars=no,resizable=yes,width='+winWidth+',height='+winHeight+',left=0,top=0');
newWindow.focus();
}


bakedX = (winWidth/2)-(310);
bakedY = (winHeight/2)-(270)-36;

function popupHelpWindow(win){
newWindow = window.open(win,'newHelpWin','toolbar=no,location=no,scrollbars=no,resizable=yes,width=620,height=540,left='+bakedX+',top='+bakedY);
newWindow.focus();
}


