function LoadMenuMain(menupage1,viewpage2) {
eval("parent.menu.location='"+menupage1+"'");
eval("parent.mainview.location='"+viewpage2+"'");
}

function OpenWindow(wWidth,wHeight,wName) {
		var sURL = "";    //The URL for the page to be opened in the new window.
		var sFeatures = "";            //A list of parameters which define the appearance of the new window.
		sFeatures = sFeatures + "width=" + wWidth;   //Set the height and width of the window in pixels.
		sFeatures = sFeatures + ",height=" + wHeight;
		sFeatures = sFeatures + ",toolbar=no";            //Disable the window's toolbar.
		sFeatures = sFeatures + ",location=no";           //Disable the window's location bar.
		sFeatures = sFeatures + ",directories=no";        //Disable the window's directory button bar.
		sFeatures = sFeatures + ",status=no";             //Disable the window's location bar.
		sFeatures = sFeatures + ",menubar=no";            //Disable the window's menu bar.
		sFeatures = sFeatures + ",scrollbars=no";        //Give the window scrollbars.
		sFeatures = sFeatures + ",resizable=yes";         //Make the window resizable.
		sURL = wName + ".html";
		
		window.open(sURL, wName, sFeatures);
	}
function OpenWindow2(wWidth,wHeight,wName,sURL) {
		var sFeatures = "";            //A list of parameters which define the appearance of the new window.
		sFeatures = sFeatures + "width=" + wWidth;   //Set the height and width of the window in pixels.
		sFeatures = sFeatures + ",height=" + wHeight;
		sFeatures = sFeatures + ",toolbar=no";            //Disable the window's toolbar.
		sFeatures = sFeatures + ",location=no";           //Disable the window's location bar.
		sFeatures = sFeatures + ",directories=no";        //Disable the window's directory button bar.
		sFeatures = sFeatures + ",status=no";             //Disable the window's location bar.
		sFeatures = sFeatures + ",menubar=no";            //Disable the window's menu bar.
		sFeatures = sFeatures + ",scrollbars=no";        //Give the window scrollbars.
		sFeatures = sFeatures + ",resizable=yes";         //Make the window resizable.
		window.open(sURL, wName, sFeatures);
	}
