/* Affiche un pop up panier, pour les listing produit */
var OldPopup = null;
function ShowPopUp ( id )
{
	try
	{
		if(OldPopup != null)
		{
			OldPopup.style.display = 'none';
		}
		OldPopup = document.getElementById('Popin'+id);

		OldPopup.style.display = 'block';
	}
	catch(Ex)
	{
		alert(Ex);
	}
}
function HidePopUp( id )
{
	document.getElementById("Popin"+id).style.display = "none";
	OldPopup = null;
}
/* Fonction d'ajout au panier */
function AjoutPanier ( iframe , url )
{
	if( url != null && url != "" )
	{
		try
		{
			iframe.src = url;
		}
		catch( ex )
		{
			alert( ex );	
		}
	}
}
function AddToBasket ( idproduit , Qte )
{
	ShowPopUp ( idproduit );
	this.AjoutPanier ( this.parent.document.getElementById("Panier") , 
	"/nav.minipanier.php5?action=ajoutepanier&id="+idproduit+"&qte="+Qte+"&<? echo __SESSION__; ?>"
	);
}
function AddCoffretToBasket ( idproduit , Qte )
{
	ShowPopUp ( idproduit );
	this.AjoutPanier ( this.parent.document.getElementById("Panier") , 
	"/nav.minipanier.php5?action=ajouter.coffret&id="+idproduit+"&qte="+Qte+"&<? echo __SESSION__; ?>"
	);
}