<!-- Hide 
function killErrors() { 
return true; 
} 
window.onerror = killErrors; 

	
function gotoURL(webAddress){
	window.location.href=webAddress;
}


function viewTab(index,type){
	 var tabBar = document.getElementById("menuBar"+type).getElementsByTagName("div");
	 for(i = 0; i < tabBar.length; i++) {
	 	tabBar[i].className = "topBar";
	 }
	 tabBar[index].className = "topBarActive";
}
function viewTab2(index,type){
	 var tabBar = document.getElementById("menuBar2"+type).getElementsByTagName("div");
	 for(i = 0; i < tabBar.length; i++) {
	 	tabBar[i].className = "topBar";
	 }
	 tabBar[index].className = "topBarActive";
}
//-->