function CalculeTotaux()
{
MM_validateForm('nb_surfacenue','','NisNum','nb_angles','','NisNum','nb_moquette','','NisNum','nb_coexpo','','NisNum','nb_basic','','NisNum','nb_standard','','NisNum','nb_azur','','NisNum','nb_etoile','','NisNum');
total_surfacenue = document.commande.prix_surfacenue.value * document.commande.nb_surfacenue.value;
document.commande.total_surfacenue.value = total_surfacenue;
total_angles = document.commande.prix_angles.value * document.commande.nb_angles.value;
document.commande.total_angles.value = total_angles;
total_moquette = document.commande.prix_moquette.value * document.commande.nb_moquette.value;
document.commande.total_moquette.value = total_moquette;
total_coexpo = document.commande.prix_coexpo.value * document.commande.nb_coexpo.value;
document.commande.total_coexpo.value = total_coexpo;
total_inscription=document.commande.total_inscription.value*1;

total_basic = document.commande.prix_basic.value * document.commande.nb_basic.value;
document.commande.total_basic.value = total_basic;
total_standard = document.commande.prix_standard.value * document.commande.nb_standard.value;
document.commande.total_standard.value = total_standard;
total1_etoile = document.commande.prix_etoile.value * document.commande.nb_etoile.value;
document.commande.total1_etoile.value = total1_etoile;

if(document.commande.habillage2_etoile.checked)
        {total2_etoile=document.commande.prix_habillage2_etoile.value * 1;
		document.commande.total2_etoile.value = total2_etoile;}
		else
		{total2_etoile=0;
		document.commande.total2_etoile.value = total2_etoile;}
if(document.commande.habillage4_etoile.checked)
        {total3_etoile=document.commande.prix_habillage4_etoile.value * 1;
		document.commande.total3_etoile.value = total3_etoile;}
		else
		{total3_etoile=0;
		document.commande.total3_etoile.value = total3_etoile;}

total_azur = document.commande.prix_azur.value * document.commande.nb_azur.value;
document.commande.total_azur.value = total_azur;
//total_zenith = document.commande.prix_zenith.value * document.commande.nb_zenith.value;
//document.commande.total_zenith.value = total_zenith;

sous_total1 = total_surfacenue + total_angles + total_moquette + total_coexpo + total_inscription;
//sous_total2 = total_basic + total_standard + total1_etoile + total2_etoile + total3_etoile + total_azur + total_zenith;
sous_total2 = total_basic + total_standard + total1_etoile + total2_etoile + total3_etoile + total_azur;

document.commande.sous_total1.value  = sous_total1;
document.commande.sous_total2.value  = sous_total2;
total_stand=sous_total1 + sous_total2;
document.commande.total_stand.value  = total_stand;

if(document.commande.catal_3couv_quadri.checked)
        {total_3couv_quadri=document.commande.prix_3couv_quadri.value * 1;
		document.commande.total_3couv_quadri.value = total_3couv_quadri;}
		else
		{total_3couv_quadri=0;
		document.commande.total_3couv_quadri.value = total_3couv_quadri;}
if(document.commande.catal_2couv_quadri.checked)
        {total_2couv_quadri=document.commande.prix_2couv_quadri.value * 1;
		document.commande.total_2couv_quadri.value = total_2couv_quadri;}
		else
		{total_2couv_quadri=0;
		document.commande.total_2couv_quadri.value = total_2couv_quadri;}
if(document.commande.catal_4couv_quadri.checked)
        {total_4couv_quadri=document.commande.prix_4couv_quadri.value * 1;
		document.commande.total_4couv_quadri.value = total_4couv_quadri;}
		else
		{total_4couv_quadri=0;
		document.commande.total_4couv_quadri.value = total_4couv_quadri;}
if(document.commande.catal_1page_quadri.checked)
        {total_1page_quadri=document.commande.prix_1page_quadri.value * 1;
		document.commande.total_1page_quadri.value = total_1page_quadri;}
		else
		{total_1page_quadri=0;
		document.commande.total_1page_quadri.value = total_1page_quadri;}
		
if(document.commande.catal_demipage_quadri.checked)
        {total_demipage_quadri=document.commande.prix_demipage_quadri.value * 1;
		document.commande.total_demipage_quadri.value = total_demipage_quadri;}
		else
		{total_demipage_quadri=0;
		document.commande.total_demipage_quadri.value = total_demipage_quadri;}
if(document.commande.catal_pub_internet.checked)
        {total_pub_internet=document.commande.prix_pub_internet.value * 1;
		document.commande.total_pub_internet.value = total_pub_internet;}
		else
		{total_pub_internet=0;
		document.commande.total_pub_internet.value = total_pub_internet;}

//total_pub = total_3couv_quadri + total_2couv_quadri + total_4couv_quadri+total_1page_quadri+total_1page_nb+total_demipage_quadri+total_demipage_nb+total_pub_internet+total_sac+total_insertion;
total_pub = total_3couv_quadri + total_2couv_quadri + total_4couv_quadri+total_1page_quadri+total_demipage_quadri+total_pub_internet;
document.commande.total_pub.value  = total_pub;
total_general=total_stand+total_pub;
document.commande.total_general.value  = total_general;
}