DOM = document.getElementById;
IE4 = document.all && !document.getElementById;
function display_menu(id) {
	if (DOM) {
		smenu = document.getElementById(id);
		if (encours!='') { oldmenu=document.getElementById(encours); }
	}
	if (IE4) {
		smenu= document.all[id];
		if (encours!='') { oldmenu=document.all[encours]; }
	}
	smenu.style.display = '';
	if (oldmenu!='' && encours!=id) { oldmenu.style.display='none'; }
	encours = id;
}

function fermer_pop() {
	if (window.fen) {
		fen.close();
	} else {
		return false;
	}
}

function popup(theURL,winName,features) { //v2.0
	fen=window.open(theURL,winName,features);
	fen.focus();
}

function displayAdresseLivraison(cb) {
	if (DOM) {
		var divLivraison = document.getElementById('livraison');
		var divQuestion = document.getElementById('question');
	}
	if (IE4) {
		var divLivraison = document.all['livraison'];
		var divQuestion = document.getElementById('question');
	}
	
	divLivraison.style.display = (cb.checked ? "block" : "none");
}

function ajout(id,prix) {
	document.form1.id_article.value=id;
	document.form1.prix_util.value=prix;
	document.form1.submit();
}

function pop_up(theURL,winName,features) { 
  fen=window.open(theURL,winName,features);
  fen.focus();
}

function selectParticulier() {
	alert('Désolé, ce site est réservé aux professionnels. Vous pouvez entrer en contact avec notre service commercial au 01.48.97.20.54. Merci.');
}
