function affiche_mel ( prenom_ , nom_ ) {	var str_= prenom_ + "@";	str_ = str_ + nom_ ;	document.write (str_);}function checkform(form) {  with (form) {    // Departement obligatoire    if (departement.value == "0") {      alert("Veuillez choisir un departement.");      return false;    }    return true;  }}