//var lmTimer = null;

function newGr3WinPopUp(strWidth, strHeight, strUrl, strMenubar, strToolbar, strStatusbar, strLocation, strDirectories, strScrollbar, strResizable, strXPos, strYPos)
{
	if (!strXPos) strXPos = (document.body.clientWidth-strWidth) >> 1;
	if (!strYPos) strYPos = (document.body.clientHeight-strHeight) >> 1;	
	window.open(strUrl, "", "width="+strWidth+", height="+strHeight+", left="+strXPos+", top="+strYPos+",menubar="+strMenubar+", location="+strLocation+", toolbar="+strToolbar+", directories="+strDirectories+", status="+strStatusbar+", scrollbars="+strScrollbar+", resizable="+strResizable+"");
}