<!--
	function popProduit(pdtId) {
		pw = 400;
		ph = 650;
		sx = Math.round((screen.width-pw)/2);
		sy = Math.round((screen.height-ph)/2);
		var pdtPop = window.open('/pop_produit.php?pid='+pdtId,'pdtPop','menubar=0,resizable=1,width='+pw+',height='+ph+',top='+sy+',left='+sx);
		pdtPop.focus();
	}
	
	function addProduit(pdtId,fromPop) {
		pw = 400;
		ph = 150;
		sx = Math.round((screen.width-pw)/2);
		sy = Math.round((screen.height-ph)/2);
		var selPop = window.open('/pop_produit_sel.php?pid='+pdtId+'&fp='+fromPop,'selPop','menubar=0,status=0,width='+pw+',height='+ph+',top='+sy+',left='+sx);
		selPop.focus();
	}
	
//-->
