   
function subhighlight(id,on){
		 if(!isValidBrowser){return(false);}
        var color=(on==true)?"#A0B7CF":"#B4C6D9"
        var theDiv=document.getElementById(id);
			if(theDiv){
				if(theDiv.getAttribute("class")=="boschSumMenu" || theDiv.getAttribute("className")=="boschSubMenu"){
           			 theDiv.style.backgroundColor=color;
				}
			}
    }