function estMail(ch)
{
    return ch.indexOf("@")!=-1 ? ch.substring(ch.indexOf("@")).indexOf(".")!=-1 : false ;
}


function verif()
{
	var variable ="";
	if (document.forms['inscipt'].telephone.value.length!=0)
	{
		if (document.forms['inscipt'].nom.value.length!=0)
		{
			if (document.forms['inscipt'].prenom.value.length!=0)
			{
				if (estMail(document.forms['inscipt'].email.value))
				{
					return true;
				}
				else
				{
					variable="'E-mail'";
				}
			}
			else
			{
				variable="'Prenom'";
			}
		}
		else
		{
			variable="'Nom'";
		}
	}
	else
	{
		variable="'Telephone'";
	}
    window.alert ("le champs "+variable+" n'est pas correct ou vide !! ");
    return false;
}
