<!--

//**********************************************************************************************************************
// Init Page
 
initialize = function () {
	try { showError(); } catch (e) {};
	try {
		JFloatingContainer.createContainer({
			left: 10,
			top: 10,
			title: 'Menu',
			source: 'divMenu',
			minimize: true,
			floating: true,
			holdid: true,
			autoscroll: true
		});
	} catch (e) {};
	try { setMenuType(null, null); } catch (e) {};
}

//**********************************************************************************************************************
// Open a modal window
 
openModalWindow = function (URL, postBack, width, height, resizable, scrollable) {
	var options = null;
	var ie4 = ((navigator.appName == "Microsoft Internet Explorer") && (parseInt(navigator.appVersion) >= 4 )) 

	if (ie4) {
		options = "help:no; status:no; " + 
				  "resizable:" + ((resizable == true)? "yes": "no") + "; " + 
				  "scrollbars:" + ((scrollable == true)? "yes": "no") + "; " +
				  "dialogHeight:" + height + "px; " +
				  "dialogWidth:" + width + "px;";
		rv = window.showModalDialog(URL, "", options);
	} else {
		options = "location=no, menubar=no, directories=no, top=0, left=0, toolbar=no, status=no, " + 
				  "resizable=" + ((resizable == true)? "1": "0") + ", " +
				  "scrollbars=" + ((scrollable == true)? "1": "0") + ", " +
		          "height=" + height + ", " + 
		          "width=" + width;
		rv = window.open(URL, "_blank", options);	
	}
	
	if (postBack != null && rv == true) __doPostBack(postBack, "");
}
		
-->

