// Fonction de contrôle du formulaire de contact
function checkForm()
{
	var champ = document.getElementById("robots").value;
	if(champ == "") document.getElementById("form_contact").submit();
}