// JavaScript Document

function hide(identifiant) { 
  if (document.getElementById(identifiant).className == "hidden") { 
		document.getElementById(identifiant).className = "visible"; 
  } else { 
	 document.getElementById(identifiant).className = "hidden"; 
  } 
}

function affiche(identifiant) {
   document.getElementById(identifiant).className = "visible"; 
}
function cache(identifiant) {
   document.getElementById(identifiant).className = "hidden"; 
}
	
function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}


