function menuOver(obj) {
	if (isNav6 == "true"){
		document.getElementById(obj).style.color = '#21283A'
		document.getElementById(obj).style.backgroundColor = '#FFFFFF'
	} else {
		eval("document.all."+obj+".style.color = '#21283A'");
		eval("document.all."+obj+".style.backgroundColor = '#FFFFFF'");
	}


}
function menuOut(obj) {
	if (1!=0){
		if (isNav6 == "true"){
			document.getElementById(obj).style.color = '#3D5489'
			document.getElementById(obj).style.backgroundColor = 'transparent'
		} else {
			eval("document.all."+obj+".style.color = '#3D5489'");
			eval("document.all."+obj+".style.backgroundColor = 'transparent'");
		}
	}
}

function menuOver2(obj) {
	if (isNav6 == "true"){
		//document.getElementById(obj).style.color = '#EAF7FD'
		document.getElementById(obj).style.backgroundColor = '#FF5A00'
	} else {
		//eval("document.all."+obj+".style.color = '#EAF7FD'");
		eval("document.all."+obj+".style.backgroundColor = '#FF5A00'");
	}


}
function menuOut2(obj) {
	if (1!=0){
		if (isNav6 == "true"){
			document.getElementById(obj).style.color = '#2FFFFFF'
			document.getElementById(obj).style.backgroundColor = 'transparent'
		} else {
			eval("document.all."+obj+".style.color = '#FFFFFF'");
			eval("document.all."+obj+".style.backgroundColor = 'transparent'");
		}
	}
}



function changePage(url){
	document.location.replace(url);
}


function show(div){ 
	var theObj = set_id(div,"visibility");
	eval(theObj+" = VISIBLE");
}

function hide(div){ 
	var theObj = set_id(div,"visibility");
	eval(theObj+" = HIDDEN");
}

function openWin(url){
	window.open(url);

}