function montre(id) {
document.getElementById(id).style.display="block";
}

function cache(id) {
document.getElementById(id).style.display="none";
}

function validmail(){
  var reg=/^([a-zA-Z0-9_\-\.]+)@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.)|(([a-zA-Z0-9\-]+\.)+))([a-zA-Z]{2,4}|[0-9]{1,3})(\]?)$/;
  var mail=document.getElementById('impt_mail_menu').value;

  if(!mail.match(reg)){
  	alert("Veuillez entrer une adresse e-mail valide, merci");
  	f.impt_mail_menu.focus();
  	return false;
   }
}

affUrlInDiv("divMeteo","/config_v3/03/G.v3/GDF_v4.FRANCAIS/librairie/bloc_html/meteo.php");