 /*------------------------------------------------------*
  *-------FONCTIONS JAVASCRIPT    ----*
  *------------------------------------------------------*/


/*1 Pop Up centrée début (utilisée pour infos légales et pages plans) */

function popup(page,largeur,hauteur,options)
{
	var top=(screen.height-hauteur)/2;
	var left=(screen.width-largeur)/2;
	window.open(page,"","top="+top+",left="+left+",width="+largeur+",height="+hauteur+","+options);
}
function change_photo(path_photo,h,w){
	document.getElementById("cadre_produit").src=path_photo;
	document.getElementById("cadre_produit").height=h;
	document.getElementById("cadre_produit").width=w;
}
/*1 Pop Up centrée FIN  */

/*----------------------------------------------------*/




