function addpanierProd(id, couleur, inv,opt) {
	if(couleur==undefined)
	{
		couleur = '';	
	}
	optok='';
	if (opt) {
		optok='&option='+opt;
	}
	new Ajax.Updater('Layer_pan2', '/ajax/addprod.php?ajout=1&produit_id='+id+'&couleurs='+couleur+'&inverse='+inv+optok, {method:'get', onComplete:insertPage});
	
}

function addpanierProdwAtt(id,att,couleur,inv,simulateur,opt) {
	if(couleur==undefined)
	{
		couleur = '';	
	}
	optok='';
	if (opt) {
		optok='&option='+opt;
	}
	window.scrollTo(0,0);
	//window.alert('/ajax/addprod.php?ajout=1&produit_id='+id+'&attribut_id='+att+'&couleurs='+couleur+'&inverse='+inv);
	new Ajax.Updater('Layer_pan2', '/ajax/addprod.php?ajout=1&produit_id='+id+'&attribut_id='+att+'&couleurs='+couleur+'&inverse='+inv+'&simulateur='+simulateur+optok, {method:'get', onComplete:insertPage});
	
}

function insertPage() {
	
	Element.show('Layer_pan2');
	
}

function affich_telephone(){
	document.getElementById('panier_click_to_call').style.visibility='visible';
	document.getElementById('panier_click_to_call').style.display='block';
}
	
function cache_telephone(){
	document.getElementById('panier_click_to_call').style.visibility='hidden';
	document.getElementById('panier_click_to_call').style.display='none';
}
