<!--
// the common variables
var message="That Functionality has been Disabled!";
//
//	Disable the right mouse click on the website
//	function click(e){
//		if (document.all) {
//			if (event.button == 2) {
//				alert(message);
//				return false;
//			}
//		}
//		if (document.layers){
//			if(e.which == 3){
//				alert(message);
//				return false;
//			}
//		}
//	}
//	
//	if (document.layers){
//		document.captureEvents(Event.MOUSEDOWN);
//		}
//	document.onmousedown=click;
//	
// Get help for this page	
	function viewWindow(sHTM, sTitle){
		var strOptions;
		var popupWin; 
		strOptions = "toolbar=No, location=No, directories=Yes, ";
		strOptions = strOptions + "status=Yes, menubar=Yes, scrollbars=Yes, ";
		strOptions = strOptions + "resizable=Yes, width=800, height=500";
		popupWin = window.open (sHTM, sTitle, strOptions, "no");
		popupWin.moveTo(0,0)
		}  

// Close the window
	function closethewindow()
		{
			self.close;
		}
//
function fullscreen(theURL, twidth, theight) {
		var strOptions; 
		var newwin;
		strOptions = "toolbar=no, location=No, directories=No, ";
		strOptions = strOptions + "status=yes, menubar=no, scrollbars=yes, ";
		strOptions = strOptions + "resizable=yes," + "width=" + twidth + "," + "height=" + theight + ",";
		newwin = window.open(theURL, "Planfinder", strOptions);
		newwin.moveTo(0,0)
	}
//
function openWindow1(strPage, strTitle, strOptions) 
	{ 
		popupWin = window.open(strPage, strTitle, strOptions);
}
	function viewOutput(sHTM, sTitle){
		var strOptions;
		var popupWin; 
		strOptions = "toolbar=Yes, location=No, directories=Yes, ";
		strOptions = strOptions + "status=Yes, menubar=Yes, scrollbars=Yes, ";
		strOptions = strOptions + "resizable=Yes, width=800, height=600";
		popupWin = window.open (sHTM, sTitle, strOptions, "no");
		popupWin.moveTo(0,0);
		} 
-->  