
function panierAjouter(ifr, typeProduit, typeTarif, produitID)
{
	var d = document;
	var iframe = d.getElementById(ifr);
	
	//alert("typeProduit = " + typeProduit + " typeTarif = " + typeTarif);
	
	if(iframe)
	{
		iframe.src = 'includes/dynamiques/panier.php?action=ajouter&type='+typeProduit+'&tarif='+typeTarif+'&produitID='+produitID;
	}
	else if(ifr == 'telechargement')
	{
		alert('Cet item est disponible en téléchargement seulement.');
	}
	else if(ifr == 'no_telechargement')
	{
		alert('Ce CD n´est pas disponible en téléchargement.');
	}
	else if(ifr == 'no_telechargement_unique')
	{
		alert('Cet item n´est pas disponible en téléchargement.');
	}
	else
	{
		alert('Le frame panier est invalide.');
	}
}