// JavaScript Document
function verif_identification() {
if (identification.pseudo.value == "")
{
alert("Veuillez entrer votre identifiant client (login).");
identification.pseudo.focus();
return (false);
}
if (identification.pass.value == "")
{
alert("Veuillez entrer votre mot de passe.");
identification.pass.focus();
return (false);
}
return(true);
}