// JavaScript Document

/* VERIFICATION DES CHAMPS DU FORMULAIRE DE CONTACT */
/****************************************************/
function F_VerifierChamps2() 
{
	if (document.forms['Proj'].proj.value ==""){
		alert ("Merci d'apporter un petit peu plus de précision à votre message");
		return false;
	}
	if (document.forms['Proj'].contact.value ==""){
		alert ("Merci de nous fournir quelques informations sur votre situation géographique et/ou vos coordonnée téléphonique");
		return false;
	}
	if (document.forms['Proj'].mail.value ==""){
		alert ("Votre E-mail facilitera la réponse à votre message");
		return false;
	}
return true;
}


/* SHOW HIDE */
/*************/

function displayDiv(which) {
	if (document.getElementById(which).style.display == String('none'))
	{
	document.getElementById(which).style.display = String ('block');
	}
else
	{
	document.getElementById(which).style.display = String ('none');
	}

return false;
}