<!--
function noErrorMessages () { return true; }
window.onerror = noErrorMessages;

var mnuSelected = ''; 
var lastMenuClicked = '';
var mnuSection = '';

function changeURL(url){
location.href="" + url
}

function menuchange(which,scheme){
var agt=navigator.userAgent.toLowerCase();
	
	if(agt.indexOf("msie") != -1 && agt.indexOf("opera") == -1){
		cursorApp = "hand"
	} else {
		cursorApp = "pointer"
	}

	switch (scheme){
		case ("menu") : table_color="666666"; font_color="ffffff"; font_weight="bold"; font_style=""; cursor=cursorApp;
		break;
		case ("menu_off") : table_color= "CCCCCC"; font_color="3F3F3F"; font_weight="normal"; font_style=""; cursor="normal";
		break;
	}
	
	which.style.backgroundColor = table_color;
	which.style.fontWeight = font_weight;
	which.style.color = font_color;
	//which.style.textDecoration = font_style;
	which.style.cursor = cursorApp;
	
}



// -->