<!--
if (document.getElementById){ //DynamicDrive.com change
	document.write('<style type="text/css">\n')
	document.write('.submenu{display: none;}\n')
	document.write('</style>\n')
}
function SwitchMenu(obj){
	if(document.getElementById){
		var me = obj; // document.getElementById('menu'+obj);
		var mar = document.getElementById("masterdiv").getElementsByTagName("div"); //DynamicDrive.com change
		for (var i=0; i<mar.length; i++){
			if (mar[i].className=="menu"){ //DynamicDrive.com change
				mar[i].style.background = "#6893B5";
			}else{ //if(mar[i].className=="menuitem"){
				mar[i].style.background = "#6893B5";
			}
		}
		var el = document.getElementById('sub'+obj.id);
		//var ar = document.getElementById("masterdiv").getElementsByTagName("span"); //DynamicDrive.com change
		if(el==null || el.style.display != "block"){ //DynamicDrive.com change
			//for (var i=0; i<ar.length; i++){
			//	if (ar[i].className=="submenu") //DynamicDrive.com change
			//		ar[i].style.display = "none";
			//}
			if (el!=null){
				el.style.display = "block";
			}
			me.style.background = "#6893B5";
		}else{
			el.style.display = "none";
			me.style.background = "#6893B5";
		}
	}
}

function goto(to){
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}


//-->