
	function ShowWin(strURL, intH, intW, intL, intT) {
		// function to display the URL in a window with the provided dimensions
		window.open(strURL,"_blank","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=" + intW + ",height=" + intH + ",left=" + intL + ",top=" + intT);
	}
	
	function ShowWinMenu(strURL, intH, intW, intL, intT) {
		// function to display the URL in a window with the provided dimensions
		window.open(strURL,"","toolbar=no,location=no,directories=no,status=no,menubar=yes,scrollbars=yes,resizable=yes,width=" + intW + ",height=" + intH + ",left=" + intL + ",top=" + intT);
	}
	
	function ShowModal(strURL, intH, intW) {
	
		var strFeatures = "dialogHeight:" + intH + "px; dialogWidth:" + intW + "px; center:yes; edge:sunken; help: no; resizable:yes; scroll:yes; status:no";
		var strReturnValue = showModalDialog(strURL, "", strFeatures);
		return strReturnValue;
	}


