var bc_count=0;
    var bc_collection="";
var isValidBrowser =document.getElementById;
   
    function doMenu(inId){
    	 if(!isValidBrowser){return(false);}
        var theDiv =document.getElementById(inId);
        if(theDiv){
            theDiv.className="boschMenuHighlight";
        }
    }
    function showHiddenBacklinks(){
        var c=0;
        var theDiv=document.getElementById("bc_container");
        if(theDiv.hasChildNodes()){
            for(var i=0;i<theDiv.childNodes.length;i++){
                if(theDiv.childNodes[i].id.indexOf("bcinvisi")>-1){
                    
                     theDiv.childNodes[i].style.display="inline";
                     //theDiv.childNodes[i].style.position="absolute";
                    //theDiv.childNodes[i].style.top=54+c*18;
                    c+=1;
                }
            }
        }
    }
    function hideHiddenBacklinks(){
        var theDiv=document.getElementById("bc_container");
        if(theDiv.hasChildNodes()){
            for(var i=0;i<theDiv.childNodes.length;i++){
                if(theDiv.childNodes[i].id.indexOf("bcinvisi")>-1){
                    theDiv.childNodes[i].style.display="none";
                }
            }
        }
    }
function highlight(id,on){
	if(!isValidBrowser){return(false);}
        var color=(on==true)?"#1b528c":"#153b63"
        var theDiv=document.getElementById(id);
			if(theDiv){
				if(theDiv.getAttribute("class")=="boschMenu" || theDiv.getAttribute("className")=="boschMenu"){
           			 theDiv.style.backgroundColor=color;
				}
			}
    }