  function montre(id) {
		cacheTout();
	  if (document.getElementById) {
		  document.getElementById(id).style.display="inline";
		} else if (document.all) {
		  document.all[id].style.display="block";
		} else if (document.layers) {
		  document.layers[id].display="block";
		} 
	}

	function cache(id) {
	  if (document.getElementById) {
		  document.getElementById(id).style.display="none";
		} else if (document.all) {
		  document.all[id].style.display="none";
		} else if (document.layers) {
		  document.layers[id].display="none";
		} 
	}

	function showThisDiv(thisDiv){
		//alert("thisDiv="+thisDiv);
		thisLayer = document.getElementById(thisDiv);
		if(thisLayer.style.display == 'none'){
		  thisValue='block';
		}else{
		  thisValue='none';
		}
		thisLayer.style.display = thisValue;
	}
	function verif_login(formulaire){
		var msp=true;
		if (formulaire.login.value=='') {
	  	alert('Veuillez indiquer votre pseudo.');
	  	formulaire.login.focus();
	  	msp=false;
		}
		if (formulaire.pwd.value=='') {
	  	alert('Veuillez indiquer votre mot de passe !');
	 	 	formulaire.pwd.focus();
	  	msp=false;
		}
		return msp;
	}

//PLF-http://www.jejavascript.net/
	function menuoffres(selection){
		window.location=selection.options[selection.selectedIndex].value;
	}
//PLF-http://www.jejavascript.net/
	function menuderoulant2(url,haut,gauche,largeur,hauteur,options){
		window.open(url,"","top="+haut+",left="+gauche+",width="+largeur+",height="+hauteur+","+options);
	}