
function affiche_zoom(zoom,produit)
{
	document.getElementById(zoom).style.display="block";
	document.getElementById('photo').innerHTML="<img src='img/zoom_"+produit+".jpg' style='margin-top:5px;'>";
}

function cache_zoom(zoom,produit)
{
	document.getElementById(zoom).style.display="none";
	document.getElementById('photo').innerHTML="";
}
