// function to open Museum Virtual Tour in a new window.
<!--
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
//-->
/* Function to Highlight the Menu item. START */
function highlight_menu ()
{
	var theURLc = document.URL;
	var highlight = null;
	if (theURLc.length > 0){
			if (theURLc.indexOf('/Museum/index_static') != -1){
				highlight = "static_home";}
			else if (theURLc.indexOf('/Museum/About') != -1){
				highlight = "about";}
			else if (theURLc.indexOf('/Museum/Visitors') != -1){
				highlight = "visitors";}
			else if (theURLc.indexOf('/Museum/Displays') != -1){
				highlight = "displays";}
			else if (theURLc.indexOf('/Museum/Timeline') != -1){
				highlight = "timeline";}				
	}

	document.write('<style type="text/css">'); 
	document.write('#mainnav #'+highlight+' a, #mainnav #'+highlight+' a:link, #'+highlight+' a:active, #'+highlight+' a:hover, #mainnav #'+highlight+' a:visited{');
	document.write('COLOR: #004e61;');
	document.write('BACKGROUND-COLOR: #fff;');
	document.write('TEXT-DECORATION: none;}');
	document.write('</style>');			
}
/* Function to Highlight the Menu item. END :: The call to this function is made in main_nav.inc file*/
