<!--

function Lien(){
   i = document.Choix.Liste.selectedIndex;
   if (i == 0) return;
   url = document.Choix.Liste.options[i].value;
   parent.location.href = url;
}

function champsok(){
   if (document.add.titre.value.length == 0){
      alert("Veuillez inscrire un titre !");
      return false;
   }
   if (document.add.texte.value.length == 0){
      alert("Veuillez inscrire un texte !");
      return false;
   }
   return true;
}

function champsokadmin(){
   if (document.add.login.value.length == 0){
      alert("Veuillez inscrire un login !");
      return false;
   }
   if (document.add.password.value.length < 8){
      alert("Veuillez inscrire un mot de passe d'au moins 8 caractères !");
      return false;
   }
   if (document.add.mail.value.length == 0){
      alert("Veuillez inscrire une adresse email !");
      return false;
   }
   return true;
}

//-->