/* Coded by Thaal-Rasha (c) Octobre 2000 (thaal-rasha@lords-zodiac.com) */
function Verif()
{
if (document.Inscription.NomLien.value=="")
{
alert("Ooops, le champ NOM DU LIEN est vide !");
document.Inscription.NomLien.focus();
}
else if (document.Inscription.NomLien.value.length>50)
{
alert("Le NOM DU LIEN ne peut pas excéder 50 caractères !");
document.Inscription.NomLien.focus();
}
else if (document.Inscription.web.value=="")
{
alert("Ooops, le champs ADRESSE WEB  est vide !");
document.Inscription.web.focus();
}
else if (document.Inscription.web.value.length>80)
{
alert("L'ADRESSE WEB ne peut pas excéder 80 caractères !");
document.Inscription.web.focus();
}
else if (document.Inscription.mel.value=="")
{
alert("Ooops, le champ EMAIL est vide !");
document.Inscription.mel.focus();
}
else
{
document.Inscription.method = "post";
document.Inscription.action = "InscriptionLien.php3?topic=verif";
document.Inscription.submit();
}
}