/*******************************************************************************
	fonction qui redimensionnne la taille de l'iframe contenant de la panier
*******************************************************************************/
function iframeHeight() {
	if(document.getElementById && !(document.all)) {
		h = document.getElementById('iframe_right').contentDocument.body.scrollHeight;
		document.getElementById('iframe_right').style.height = h;
	}
	else if(document.all) {
		h = document.frames('iframe_right').document.body.scrollHeight;
		document.all.iframe_right.style.height = h;
	}
}

/*******************************************************************************
	fonction qui ajoute un produit au panier (dans iframe)
*******************************************************************************/
function addPanier(id_produit,qte) {
	
	self.scrollTo(0,0);
	//self.location.hash="top";
	window.frames["iframe_right"].location="action.php?act=add_single_caddy&pid=" + id_produit + "&qte=" + qte;
}
