function cacher(){
	var isIE= navigator.appName == "Microsoft Internet Explorer" ; /* IE */ 
	var isNS= navigator.appName == "Netscape" ; /* Netscape, Mozilla Firefox */			
	
	if(isIE)
		window.document.getElementById('trnosproduits').style.display='none';				
	else	
		window.document.getElementById('trnosproduits').style.display='none';
}

function montrer(){
	var isIE= navigator.appName == "Microsoft Internet Explorer" ; /* IE */ 
	var isNS= navigator.appName == "Netscape" ; /* Netscape, Mozilla Firefox */			
	
	window.document.getElementById("menu2").className="mainlevel";
	window.document.getElementById("menu3").className="mainlevel";
	window.document.getElementById("menu5").className="mainlevel";
	
	if(isIE)
		window.document.getElementById('trnosproduits').style.display='block';				
	else	
		window.document.getElementById('trnosproduits').style.display='table-row';
		
	window.document.getElementById("menu4").className="mainlevel-actif";		
}