// JavaScript Document

//toggle
function tog(obj) {
 var el = document.getElementById(obj);
 if ( el.style.display != "none" ) {
 el.style.display = 'none';
 }
 else {
 el.style.display = 'block';
 }
}

//---- Poster le formulaire pour télécharger les profils
function postProfils() {
	if (document.getElementById('email_form').value=="") {
      alert("Le champ email est obligatoire.");
      document.getElementById('email_form').focus();
      return (false);
    }
	  
	var rgx=new RegExp("^[a-z0-9_]([.-]?[a-z0-9_]+)+@[a-z0-9_]([.-]?[a-z0-9_]+)+\.([a-z]{2,4}|[a-z]{6})$", "gi");
    if (!rgx.exec(document.getElementById('email_form').value)) {
      alert("L'email fourni n'a pas un format valide.");
	  return false;
	}
	document.downloadP.submit();
}
