
// affiche le produit en ajax
function affiche_produit(params){	
	document.getElementsByTagName('body')[0].id='product';
	new Ajax.Updater('content-ajax',
	'/modules/produits-gammes/produits-gammes.php',
	{method: 'get',
		parameters:'idproduit'+params.idproduit,
		evalScripts:true
	});
}
