<!--
var blnMenuSet=new Array(false,false,false,false,false,false,false,false,false,false,false,false,false);

function menuOverA2(vThis,vTab){
	//alert("menuOverA2");
	//Use this block to always CLEAR the highlighting
		if(vTab==menucurrentTab){
			vThis.style.color=linkcolmenuh;
			vThis.style.backgroundColor=linkcolmenuhb;
			var objTD=window.document.all[vThis.name+"td"];
			if(objTD){objTD.style.backgroundColor=linkcolmenuhb;}
			}
		else{
			vThis.style.color=linkcolmenuh2;
			vThis.style.backgroundColor=linkcolmenuhb2;
			var objTD=window.document.all[vThis.name+"td"];
			if(objTD){objTD.style.backgroundColor=linkcolmenuhb2;}
			}
		
	//End Block
	
	//Use this block to always KEEP the highlighting for previously clicked item	
	/*
	if( (vTab==null)||(!blnSet[vTab]) ){
		vThis.style.color=linkcolmenuh;
		vThis.style.backgroundColor=linkcolmenuhb;
		var objTD=window.document.all[vThis.name+"td"];
		if(objTD){objTD.style.backgroundColor=linkcolmenuhb;}
		}
	*/
	//End Block	
}
function menuOutA2(vThis,vTab){
	//alert("menuOutA2");
	
	//Use this block to always CLEAR the highlighting
	/*
		vThis.style.color=linkcolmenu;
		vThis.style.backgroundColor=linkcolmenub;
		var objTD=window.document.all[vThis.name+"td"];
		if(objTD){objTD.style.backgroundColor=linkcolmenub;}
	*/	
	//End Block
	
	//Use this block to always KEEP the highlighting for previously clicked item	
	
	if( (vTab==null)||(!blnSet[vTab]) ){
		vThis.style.color=linkcolmenu;
		vThis.style.backgroundColor=linkcolmenub;
		var objTD=window.document.all[vThis.name+"td"];
		if(objTD){objTD.style.backgroundColor=linkcolmenub;}
		}
	
	//End Block	
}

function SetMenuLinkA2(vThis,vTab){
	//alert("SetMenuLinkA2-vThis.name="+vThis.name);
	vThis.style.color=linkcolh;
	vThis.style.backgroundColor=linkcolhb;
	var objTD=window.document.all[vThis.name+"td"];
	if(objTD){objTD.style.backgroundColor=linkcolmenuhb;}
	
	blnSet[vTab]=true;
	menucurrentTab=vTab;
	for(var i=1;(i<13);i++){
		if(i!=parseInt(vTab)){
			blnSet[i]=false;
			window.document.all["a"+i].style.color=linkcolmenu;
			window.document.all["a"+i].style.backgroundColor=linkcolmenub;
			var objTD1=window.document.all["a"+i+"td"];
			if(objTD1){objTD1.style.backgroundColor=linkcolmenub;}
			}
		}
}




-->