// Fonction empechant les robots
function checkForm()
{
	var champ = document.getElementById("robots").value;
	if(champ != "")
	{
		return false;
	}
	else
	{
		document.contact.submit();
		return true;
	}
}
