function verifForm(){
    		if(document.forms['modifier1'].elements['commentaire_code'].value == '5' || document.forms['modifier1'].elements['commentaire_code'].value == 'cinq' || document.forms['modifier1'].elements['commentaire_code'].value == 'Cinq')
   			 {
        		document.forms['modifier1'].submit();
        		return true;
   			 }
    		else
    		{
        		return false;
    		}
		}

function visibilite(thingId){
var targetElement;
targetElement = document.getElementById(thingId) ;
if (targetElement.style.display == "none")
{
targetElement.style.display = "" ;
} else {
targetElement.style.display = "none" ;
}
}   

sfHover = function() {
				var sfEls = document.getElementById("menu").getElementsByTagName("LI");
				for (var i=0; i<sfEls.length; i++) {
					sfEls[i].onmouseover=function() {
							this.className+=" sfhover";
					}
					sfEls[i].onmouseout=function() {
							this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
					}
				}		
			}
			if (window.attachEvent) window.attachEvent("onload", sfHover);	
		
		
		function visibilite(thingId){
var targetElement;
targetElement = document.getElementById(thingId) ;
if (targetElement.style.display == "none")
{
targetElement.style.display = "" ;
} else {
targetElement.style.display = "none" ;
}
}	
		

 

   
