// JavaScript Document

function changeBgColor_CIP(strMenu_Name)
{

	
	document.getElementById(strMenu_Name).style.backgroundColor='#00549E';
	document.getElementById(strMenu_Name).style.color='#ffffff';

}

function changeBgColor_CIP_Gray(strMenu_Name)
{

	
	document.getElementById(strMenu_Name).style.backgroundColor='#58595B';
	document.getElementById(strMenu_Name).style.color='#ffffff';

}
function revertBgColor_CIP(strMenu_Name)
{

	document.getElementById(strMenu_Name).style.backgroundColor='#E0E0E0';
	document.getElementById(strMenu_Name).style.color='#58595B';


}
function changeBgColor_LCP(strMenu_Name)
{

	
	document.getElementById(strMenu_Name).style.backgroundColor='#7AB742';
	document.getElementById(strMenu_Name).style.color='#ffffff';

}
function revertBgColor_LCP(strMenu_Name)
{

	document.getElementById(strMenu_Name).style.backgroundColor='#E0E0E0';
	document.getElementById(strMenu_Name).style.color='#58595B';


}
function changeBgColor_HRC(strMenu_Name)
{

	
	document.getElementById(strMenu_Name).style.backgroundColor='#7C4299';
	document.getElementById(strMenu_Name).style.color='#ffffff';

}
function revertBgColor_HRC(strMenu_Name)
{

	document.getElementById(strMenu_Name).style.backgroundColor='#E0E0E0';
	document.getElementById(strMenu_Name).style.color='#58595B';


}
function changeBgColor_consumables(strMenu_Name)
{

	
	document.getElementById(strMenu_Name).style.backgroundColor='#907B54';
	document.getElementById(strMenu_Name).style.color='#ffffff';

}
function revertBgColor_consumables(strMenu_Name)
{

	document.getElementById(strMenu_Name).style.backgroundColor='#E0E0E0';
	document.getElementById(strMenu_Name).style.color='#58595B';


}
function changeBgColor_TTO(strMenu_Name)
{

	
	document.getElementById(strMenu_Name).style.backgroundColor='#FFCB05';
	document.getElementById(strMenu_Name).style.color='#ffffff';

}
function revertBgColor_TTO(strMenu_Name)
{

	document.getElementById(strMenu_Name).style.backgroundColor='#E0E0E0';
	document.getElementById(strMenu_Name).style.color='#58595B';


}

function changeBgColor_laser(strMenu_Name)
{

	
	document.getElementById(strMenu_Name).style.backgroundColor='#F58033';
	document.getElementById(strMenu_Name).style.color='#ffffff';

}
function revertBgColor_laser(strMenu_Name)
{

	document.getElementById(strMenu_Name).style.backgroundColor='#E0E0E0';
	document.getElementById(strMenu_Name).style.color='#58595B';


}




function changeBgColor(strMenu_Name)
{

	
	document.getElementById(strMenu_Name).style.backgroundColor='#E21F26';
	document.getElementById(strMenu_Name).style.color='#ffffff';

}
function revertBgColor(strMenu_Name)
{

	document.getElementById(strMenu_Name).style.backgroundColor='#E0E0E0';
	document.getElementById(strMenu_Name).style.color='#58595B';


}

function lightup(imageobject, opacity){
 if (navigator.appName.indexOf("Netscape")!=-1
  &&parseInt(navigator.appVersion)>=5)
    imageobject.style.MozOpacity=opacity/100
 else if (navigator.appName.indexOf("Microsoft")!= -1 
  &&parseInt(navigator.appVersion)>=4)
    imageobject.filters.alpha.opacity=opacity
}
