// JavaScript Document
function send_mail()
{
	//Fonction pour envoyer un mail à partir de la page d'accueil
	nom = document.getElementById('form_nom').value;
	email = document.getElementById('form_email').value;
	message = document.getElementById('form_message').value;
		
	xmlHttp = ajaxObject();
	xmlHttp.open("POST","scripts/ajax/envoiMail.php",true);
	
	xmlHttp.onreadystatechange = function()
	{
		if(xmlHttp.readyState == 4 && xmlHttp.status == 200)
		{
			alert(xmlHttp.responseText);
		}
	}
	xmlHttp.setRequestHeader("Content-Type","application/x-www-form-urlencoded");
	xmlHttp.send("nom=" + nom + '&email=' + email + '&message=' + message);
}