<!--


function verifForm(numero,commande)
{


    if  (numero == 1)
    {
      document.formpayer.action = "<? echo $action_form_paybox; ?>";


    }


    if  (numero == 2)
    {
       document.formpayer.action = "index.php?pg=44&x=1&idCmd="+commande+"";


    }
    
    if  (numero == 3)
    {
       document.formpayer.action = "index.php?pg=44&x=4&idCmd="+commande+"";


    }


      document.formpayer.submit();
}




function verifFormConditions()
  {


   	if(document.formConditions.conditions.checked == false)
    {
       alert ("Vous devez accepter les conditons de vente");


    }
    else 
    {


	    	document.formConditions.action = "index.php?pg=438";
		    document.formConditions.submit();    
    }
}


<!--
 

function verif_form_contact()
	{
 	if (document.contact.nom.value=="")
 		{
  		alert("N'oubliez pas de préciser votre nom");
  		document.contact.nom.focus();
  		return false;
 		}
	if (document.contact.adresse.value=="")
 		{
  		alert("N'oubliez pas de préciser votre adresse");
  		document.contact.adresse.focus();
  		return false;
 		}
		if (document.contact.cp.value=="")
 		{
  		alert("N'oubliez pas de préciser votre code postal");
  		document.contact.cp.focus();
  		return false;
 		}
	if (document.contact.ville.value=="")
 		{
  		alert("N'oubliez pas de préciser votre ville");
  		document.contact.ville.focus();
  		return false;
 		}
		if (document.contact.pays.value=="")
 		{
  		alert("N'oubliez pas de préciser votre pays");
  		document.contact.pays.focus();
  		return false;
 		}
 	 if (document.contact.email.value=="")
	 	{
	 	alert("N'oubliez pas votre adresse email");
  		document.contact.email.focus();
  		return false;
 		}
	 if (document.contact.email.value!="")
	 	{
		 if (document.contact.email.value.indexOf('@')==-1 || document.contact.email.value.indexOf('.')==-1)  
			{
			alert("Adresse email non valide");
	  		document.contact.email.focus();
	  		return false;
			}
		}
	if (document.contact.message.value=="")
 		{
  		alert("N'oubliez pas votre message!");
  		document.contact.message.focus();
  		return false;
 		}
	if (document.contact.code.value=="")
 		{
  		alert("Code de verification non valide !");
  		document.contact.code.focus();
  		return false;
 		}
	return true;
	}
	
//-->
