function  checkacontactform()
{
  var modele = /^[a-zA-Z0-9._-]+@[a-zA-Z0-9._-]+\.[a-zA-Z0-9._-]{2,4}$/;
  var err = "Erreurs:\n";
  var email = document.getElementById('resp_mail').value;
  if (!modele.test(email))
	err+=" - Email invalide\n";
  if (document.getElementById('msg').value == '')
	err+="  - Contenu inexistant\n";
  if (err == "Erreurs:\n")
	return true;
  else
	alert(err);
  return false; 
}
document.write("<style>.a12gris{font-family: 'Trebuchet MS';font-size: 1em;color: #0066cc;}");
document.write(".champ1{background-color:#FFFFFF;border:1px solid #ff6700;font-family: Arial;font-size: 11px;color: #333333;}</style>");
document.write("<form name='acontact' method='post' action='http://tools.ifrancepro.com/contact/contact_send_mail.php' OnSubmit='return checkacontactform();'>");
document.write("<input type='hidden' value='25689' name='dom_id'>");
document.write("<input type='hidden' value='galeotv.com' name='dom_name'>");
document.write("<input type='hidden' value='"+document.location.href+"' name='return_url'>");
document.write("<table cellspacing='5' cellpadding='2' style='border:2px solid #ff6700;'>");
document.write("<tr width=''>");
document.write("<td class='a12gris'>Votre email</td>");
document.write("<td><input class='champ1' type='text' id='resp_mail' name='resp_mail' size='82' value=''></td>");
document.write("</tr>");
document.write("<tr>");
document.write("<td class='a12gris'>Objet</td>");
document.write("<td><input class='champ1' type='text' size='82' id='title' name='title' value=''></td>");
document.write("</tr>");
document.write("<tr>");
document.write("<td class='a12gris' valign='top' width='50px'>Message</td>");
document.write("<td><textarea class='champ1' cols='80' rows='4' name='msg' id='msg'></textarea></td>");
document.write("</tr>");
document.write("<tr>");
document.write("<td colspan='2' align='right'><input type='submit' value='Envoyer'></td>");
document.write("</tr>");
document.write("</table>");
document.write("</form>");
