<!-- 
/*Author: NF Informatique Sàrl  Copyright: You may copy, modify or
redistribute this work, provided the original author is mentionned and
provided the same restrictions apply to subsequent users */

//Affiche les sous-menus
function montre(id) {
 document.getElementById(id).style.display = 'block';
}

//Cache les sous-menus
function cache(id) {
  document.getElementById(id).style.display = 'none';
}

function cache() {
  document.getElementById('smenuski').style.display = 'none';
	document.getElementById('smenusnow').style.display = 'none';
}
//-->


