
 function ShowMenu(objid) 
    {
        document.getElementById("menu_" + objid).style.display = "block";  
        document.getElementById("div_" + objid).style.backgroundColor="white"; 
         document.getElementById("img_"+objid).src="";      
    }
    function ShowMenu1(objid,linkid,divid1,divid2,downlstid) 
    {       
       document.getElementById(objid).style.backgroundColor="white";  
       document.getElementById(linkid).style.color="skyblue";  
       
       document.getElementById("divimg_"+divid1).innerHTML="";  
       document.getElementById("divimg_"+divid2).innerHTML="";
       
       document.getElementById(downlstid).style.display="block";
           
    }
    
     function HideMenu1(objid,linkid,divid1,divid2,downlstid) 
    {
       
       document.getElementById(objid).style.backgroundColor="Transparent";  
       document.getElementById(linkid).style.color="white";  
       
       document.getElementById("divimg_"+divid1).innerHTML="<img  src='../images/titlediv.bmp'>";  
       document.getElementById("divimg_"+divid2).innerHTML="<img  src='../images/titlediv.bmp'>";
       document.getElementById(downlstid).style.display="none";
           
    }
    
    
        
    function ShowOne(objid,divid) 
    {
		document.getElementById("menu_"+objid).style.display="block";
        document.getElementById(divid).onmouseover();
    }
     function HideOne(objid,divid) 
    {
		document.getElementById("menu_"+objid).style.display="none";
        document.getElementById(divid).onmouseout();
    }
    function overBUS(objid,divid) 
    {
        document.getElementById("div_" + objid).style.backgroundColor="white";         
    }
     function outBUS(objid) 
    {
        document.getElementById("div_" + objid).style.backgroundColor="e1e1e1";        
    }
    function overColor(objid) 
    {
        document.getElementById("link_" + objid).style.color="3399ff";         
    }
     function outColor(objid) 
    {
        document.getElementById("link_" + objid).style.color="00377e";     
    }
    function changebackcolortoblue(objstr)
    {
         window.alert("111");
        document.getElementById("div_"+objstr).style.backgroundColor="transparent";
        window.alert("123");
        document.getElementById("span_"+objstr).style.color="red";
    }
    function changebackcolortoWhite(objstr)
    {
        document.getElementById("div_"+objstr).style.backgroundColor="white";
        document.getElementById("span_"+objstr).style.color="black";
        
    }
        function changebackcolortoblue(objstr,secmenu)
    {
        if (secmenu==undefined)
        {
        document.getElementById("div_"+objstr).style.backgroundColor="lightblue";  
        document.getElementById("span_"+objstr).style.color="red";
        }
        else
        {
        document.getElementById("div_"+objstr).style.backgroundColor="lightblue";    
        document.getElementById("span_"+objstr).style.color="red";
        document.getElementById("div_"+secmenu).style.display="block";
        }
        
    }
    function changebackcolortoWhite(objstr,secmenu)
    {
        if (secmenu==undefined)
        {
			document.getElementById("div_"+objstr).style.backgroundColor="transparent";
			document.getElementById("span_"+objstr).style.color="black";
        }
        else
        {
			document.getElementById("div_"+objstr).style.backgroundColor="transparent";
			document.getElementById("span_"+objstr).style.color="black";
			document.getElementById("div_"+secmenu).style.display="none";
        }
    }
    function showsectoolbar(divid,divid2,objid3)
    {
       document.getElementById(divid).style.display="block";
	   document.getElementById(divid2).style.display="block";
	   document.getElementById("div_"+objid3).style.backgroundColor="lightblue";
       document.getElementById("span_"+objid3).style.color="red";
    }
    function hidesectoolbar(divid,objid3)
    {
       document.getElementById(divid).style.display="none";
        document.getElementById("div_"+objid3).style.backgroundColor="transparent";
       document.getElementById("span_"+objid3).style.color="black";
    }
    function changebackcolortoblue_toolbar(obj1,obj2)
    {
         document.getElementById(obj1).style.backgroundColor="lightblue";
        document.getElementById(obj2).style.color="red";
    }
    function changebackcolortowhite_toolbar(obj1,obj2)
    {
         document.getElementById(obj1).style.backgroundColor="transparent";
        document.getElementById(obj2).style.color="black";
    }
    
