var isIE = false;
var req;

function send(urls) {
	theform = "contactform";
	loadXMLDoc(urls,"name=" + document.getElementById("nom22").value + 
	"&email=" + document.getElementById("email22").value + "&message=" + document.getElementById("message22").value + "&Envoyer=true");
	var node = document.getElementById('contactform');
}

function loadcontactform() {
	txtew = document.createElement('input');
	txtew.id = "nom22";
	txtew.name = "name";
	txtew.style.width = "100px";
	txtex = document.createElement('input');
	txtex.id = "email22";
	txtex.name = "email";
	txtex.style.width = "100px";
	txtey = document.createElement('TEXTAREA');
	txtey.id = "message22";
	txtey.name = "message";
	txtey.cols = "40";
    txtey.rows = "4";
	document.getElementById('fefn').appendChild(txtew);
	document.getElementById('fefe').appendChild(txtex);
	document.getElementById('fefm').appendChild(txtey);
}

function submitcontactform(){
	var errors='';
	if (document.getElementById('nom22').value == '') { errors+='- Votre nom est obligatoire.\n';}
	if (document.getElementById('email22').value == '') { errors+='- Votre adresse email est obligatoire.\n';}
	if (document.getElementById('message22').value == '') { errors+='- Votre message est obligatoire.\n';}
	if (errors) alert('Les renseignements suivants sont obligatoires:\n'+errors);
	document.MM_returnValue = (errors == '');
	if (document.MM_returnValue) { send("http://www.missechantillons.fr/contactsend.php");
	document.getElementById("feok").innerHTML = "";}
}