function verif_form(){
	with(document.contact) {
		if(nom.value == ""){
			alert("Le champ \"Nom\" est vide");
			nom.focus();
			return false;
		}

		if((mail.value.indexOf("@",0) < 0)||(mail.value.indexOf(".",0) < 0)){
			alert("Le champ \"eMail\" n'est pas correcte");
			mail.focus();
			return false;
		}
		
		if(suj.value == ""){
			alert("Le champ \"Sujet\" est vide");
			prenom.focus();
			return false;
		}
		
		if(mess.value == ""){
			alert("Le champ \"Message\" est vide");
			prenom.focus();
			return false;
		}
		return true;
	}
}
function valid_contact() {
	if(verif_form()==true) {
	var poursuivre=confirm("Voulez-vous continuer ?");
		if(poursuivre==true) {
			document.contact.action="http://www.morzana.com/contact.php?nom="+document.nom+"&mail="+document.mail+"&suj="+document.suj+"&mess="+document.mess;
			document.contact.submit();
		}
		else
		{
			document.contact.nom.focus();
		}
	}
}