function afficherContact() {
  var codePostal = new String(document.contact.codePostal.value);
  if (validate(codePostal)) {
    var url = new String(document.contact.lienUrl.value);
    var cible = new String(document.contact.cible.options[document.contact.cible.selectedIndex].value);
    window.location = url + '&cible=' + cible + '&codepostal=' + codePostal;
  }
}

function validate(cp) {
   if(!cp.match(/^[0-9]{5,5}$/)){
      alert("Le code postal doit comporter 5 chiffres");
      return false;
   }
   return true;
}

