function submitform_information()
{
  var nom = document.form1.clt_nom.value; 
  var email = document.form1.clt_email.value; 

 if (nom != "" ) {
 if (email.search(/^[^._-][a-z0-9._-]+[^._-]@[a-z0-9._-]+([a-z0-9]+[^._-])?[.-]+[a-z]{2,4}$/) == -1) {
    alert("OBLIGATOIRE : Entrer une adresse Email Valide.");
    document.form1.clt_email.focus();
 } else {
    document.form1.action ="commande_panier.php";
    document.form1.submit();
 }
 } else {
    alert("OBLIGATOIRE : Entrer votre nom.");
    document.form1.clt_nom.focus();
 }
}
function submitform_consultation()
{
    document.form1.action ="information_panier.php";
    document.form1.submit();
}

function submitform_newconsultation()
{
  var condvente = document.form1.conditions_vente;
  var nom = document.form1.clt_nom.value; 
  var email = document.form1.clt_email.value;



 if (nom != "" ) {
 if (email.search(/^[^._-][a-z0-9._-]+[^._-]@[a-z0-9._-]+([a-z0-9]+[^._-])?[.-]+[a-z]{2,4}$/) == -1) {
    alert("OBLIGATOIRE : Entrer une adresse Email Valide.");
    document.form1.clt_email.focus();
 } else {
  if (condvente.checked == true ) {
    document.form1.action ="new_commande_panier.php";
    document.form1.submit();
  } else {
    alert("OBLIGATOIRE : les conditions générale de vente doivent être lues et cochées.");
    document.form1.conditions_vente.focus();
  }
 }
 } else {
    alert("OBLIGATOIRE : Entrer votre nom.");
    document.form1.clt_nom.focus();
 }
}
function submitform_actualisation()
{
    document.form1.action ="new_consultation_panier.php";
    document.form1.submit();
}
