
function envoiform(num){
        document.forms[1].submit();
}

<!--
function VERIFY() {

        if(!VERIF_CIVIL())
                return;
		if(!VERIF_PRENOM())
                return;
        if(!VERIF_NOM())
                return;
        if(!VERIF_ADRESSE())
                return;
        if(!VERIF_VILLE())
                return;
        if(!VERIF_CODEPOSTAL())
                return;
        if(!VERIF_TELEPHONE())
                return;	
        if(!VERIF_EMAIL())
                return;
        if(!VERIF_PASS())
                return;
        if(!VERIF_DATE_LIVRAISON())
                return;
		if(!VERIF_CDV())
                return;

 document.facture_form.submit();
          }

//  AUTRES VERIFICATIONS PARAMETRES

function VERIF_CIVIL() {
var str = document.facture_form.civilite.value;
        if (str ==""){
        alert("VEUILLEZ INDIQUER VOTRE CIVILITE !!!")
        document.facture_form.civilite.focus() ;
        return false;
        }
return true;
}
function VERIF_NOM() {
var str = document.facture_form.nom.value;
        if (str == ""){
        alert("VEUILLEZ INDIQUER VOTRE NOM")
        document.facture_form.nom.focus() ;
        return false;
        }
return true;
}

function VERIF_PRENOM() {
var str = document.facture_form.prenom.value;
        if (str == ""){
        alert("VEUILLEZ INDIQUER VOTRE PRENOM")
        document.facture_form.prenom.focus() ;
        return false;
        }
return true;
}

function VERIF_ADRESSE() {
var str = document.facture_form.adresse.value;
        if (str == ""){
        alert("VEUILLEZ INDIQUER VOTRE ADRESSE")
        document.facture_form.adresse.focus() ;
        return false;
        }
return true;
}

function VERIF_VILLE() {
var str = document.facture_form.ville.value;
        if (str == ""){
        alert("VEUILLEZ INDIQUER VOTRE VILLE")
        document.facture_form.ville.focus() ;
        return false;
        }
return true;
}

function VERIF_CODEPOSTAL() {
var str = document.facture_form.code_postal.value;
        if (str == ""){
        alert("VEUILLEZ INDIQUER VOTRE CODE POSTAL")
        document.facture_form.code_postal.focus() ;
        return false;
        }
return true;
}

function VERIF_TELEPHONE() {
var str = document.facture_form.telephone.value;
        if (str == ""){
        alert("VEUILLEZ INDIQUER VOTRE TELEPHONE")
        document.facture_form.telephone.focus() ;
        return false;
        }
return true;
}

function VERIF_EMAIL() {

var str = document.facture_form.email.value;
        if (str == ""){
        alert("VEUILLEZ INDIQUER VOTRE EMAIL")
        document.facture_form.email.focus() ;
        return false;
        }
else if (document.facture_form.email.value.indexOf('@')==-1 || document.facture_form.email.value.indexOf('.')==-1)
          {
          alert("L\'EMAIL SAISIE EST INVALIDE.")
            document.facture_form.email.focus();
            return false;
          }
return true;
}

function VERIF_PASS() {
var str = document.facture_form.pass.value;
        if (str == ""){
        alert("VEUILLEZ INDIQUER UN MOT DE PASSE")
        document.facture_form.pass.focus() ;
        return false;
        }
return true;
}

function VERIF_DATE_LIVRAISON() {
var str = document.facture_form.date_livraison.value;
        if (str == ""){
        alert("VEUILLEZ INDIQUER LA DATE DE LIVRAISON")
        document.facture_form.date_livraison.focus() ;
        return false;
        }
return true;
}

function VERIF_CDV() {
var str = document.facture_form.cdv;
        if (!str.checked){
        alert("VEUILLEZ LIRE ET ACCEPTER LES CONDITIONS DE VENTE")
        document.facture_form.cdv.focus() ;
        return false;
        }
return true;
}
// -->
