
  	function popWindow(strURL,strWindowName,varWidth,varHeight)
	{
		windowFeatures ="menubar=no,scrollbars=yes,location=no,favorites=no,resizable=no,status=no,toolbar=no,directories=no";
		winLeft = (screen.width-varWidth)/2;
		winTop = (screen.height-(varHeight))/2;
		//myWin = window.open(strURL,strWindowName,"width=" + varWidth +",height=" + varHeight + ",left=" + winLeft + ",top=" + winTop + test + windowFeatures + test);
		window.open(strURL,strWindowName,"width=" + varWidth +",height=" + varHeight + ",left=" + winLeft + ",top=" + winTop + "," + windowFeatures);
//myWin.document.open();
//myWin.document.close();
	}
