// JavaScript Document

function menu(etat, no){ 
	if(navigator.appVersion.indexOf('MSIE 8.0') != -1){
		//
	} else {
		var obj2 = document.getElementById("im_" + no);
		if(etat == 1) {
			obj2.style.visibility="visible";
		} else {
			obj2.style.visibility="hidden";
		}
	}
}

//panier
function comfirmation(url, phrase) {
	if(confirm('Voulez-vous vraiment supprimer ' + phrase + ' ?')){
		document.location.href=url;
	} 
}

function ajoutProduit(ref){
	document.location.href='maj_panier.php?action=ajout&ref=' + ref;	
}

function majPays(id_pays){
	if(document.getElementById("valider")) document.getElementById("valider").href='#';
	//alert('test');
	document.location.href='maj_panier.php?id_pays=' + id_pays + '&action=pays';
}

function majQte(ref, qte){
	if(document.getElementById("valider")) document.getElementById("valider").href='#';
	document.location.href='maj_panier.php?ref=' + ref + '&qte=' + qte + '&action=qte';
}

function suppProduit(ref){
	if(confirm('Voulez-vous vraiment supprimer ce produit du panier ?')){
		if(document.getElementById("valider")) document.getElementById("valider").href='#';
		document.location.href='maj_panier.php?ref=' + ref + '&action=supp';
	} 	
}
	

function validCommande(){
	document.location.href='facturation.php';
}
function test_cgv(){
	var v = document.getElementById("cgv").checked;
	
	if(v == true) {
		document.location.href='recapitulatif.php?cgv=1'
	} else {
		document.location.href='recapitulatif.php?cgv=0'
	}
		
}

function goPaiment(){
	var v = document.getElementsByName("PAYBOX");
	//alert(v[0]);
	v[0].submit();
}
