/*-------------------------------*/
/* -- Affiche on/off un bloc -- */
/*-----------------------------*/

function getElement(id)
{
	if (!document.getElementById) { return; }
		if (document.all) {
		return eval("document.all." + id)
	} else {
		return document.getElementById(id)
	}
}


function resume_onoff(id) {
getElement('resume'+id).style.display = (getElement('resume'+id).style.display == "none" ? "inline" : "none");
}

/*---------------------------------------*/
/* -- Verification formulaire e.mail -- */
/*-------------------------------------*/

function verif(){
	if (document.getElementById("nom").value.length<1||document.getElementById("nom").value==" ")
	{window.alert("Veuillez indiquer votre Nom");}
		else if (document.getElementById("email").value.indexOf('.')==-1)
	{window.alert("Veuillez saisir correctement votre E.mail");}
		else if (document.getElementById("email").value.indexOf('@')==-1)
	{window.alert("Veuillez saisir correctement votre E.mail");}	
		else if (document.getElementById("sujet").value.length<1||document.getElementById("sujet").value==" ")
	{window.alert("Veuillez indiquer le sujet de votre message");}
		else if (document.getElementById("corps").value.length<1||document.getElementById("corps").value==" ")
	{window.alert("Veuillez remplir la case message");}
	else{document.forms.contact.submit();}
}
