// ****************************
// AJOUT D'UN PRODUIT AU PANIER
// ****************************

function ajoProduit(prodid){

	if(GEN_navnam == "explorer"){
	
		formulaire = document.all("frmpro");

		formulaire.proid.value = prodid;
		formulaire.submit();

	}
	else{
		
		formulaire = document.getElementById("frmpro");

		formulaire.proid.value = prodid;
		formulaire.submit();

	}		

}

// *****************
// MAJ DES QUANTITES
// *****************

function goQuantites(){

	if(GEN_navnam == "explorer"){
	
		formulaire = document.all("frmpan");

		formulaire.modsub.value = 0;
		formulaire.submit();

	}
	else{
		
		formulaire = document.getElementById("frmpan");

		formulaire.modsub.value = 0;
		formulaire.submit();

	}		

}


// ***********************
// ROUTAGE VERS CONDITIONS
// ***********************

function goConditions(){

	if(GEN_navnam == "explorer"){
	
		formulaire = document.all("frmpan");

		formulaire.modsub.value = 1;
		formulaire.submit();

	}
	else{
		
		formulaire = document.getElementById("frmpan");

		formulaire.modsub.value = 1;
		formulaire.submit();

	}		

}

// ***********************************
// ROUTAGE VERS COMMANDE / RESERVATION
// ***********************************

function goCommande(mode,url){

	if(mode==1){
	
		document.location = url + "com_lst.asp"

	}
	else{
		
		document.location = url + "bou_acc.asp"

	}		

}

// ****************************
// MAJ DE LA ZONE FRAIS DE PORT
// ****************************

function goZones(url){

	formulaire = document.getElementById("frmcmd");
	formulaire.target = "_self";
	formulaire.action = url;
	formulaire.submit();

}


// *********************
// ROUTAGE VERS PAIEMENT
// *********************

function goPaiement(mode){

	formulaire = document.getElementById("frmcmd");
	formulaire.modpai.value = mode;
	formulaire.submit();

}

function goPaiementCEP(mode){

	popup = window.open('/common/html/blank.html', 'spplus', 'width=670,height=535,scrollbars=0,toolbar=0,titlebar=0,status=1,resizable=0,menubar=0,location=0');

	formulaire = document.getElementById("frmcmd");
	formulaire.modpai.value = 3;
	formulaire.target = "spplus";
	formulaire.submit();

	popup.focus();


}

