 /*------------------------------------------------------*
  *-------FUNCIONES JAVASCRIPT    ----*
  *------------------------------------------------------*/


/*1 Pop Up centrada inicio (utilizada por infos legales y páginas planos) */

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 popupLegal(page,largeur,hauteur)
{
    var top=(screen.height-hauteur)/2;
    var left=(screen.width-largeur)/2;
    window.open(page,"","top="+top+",left="+left+",width="+largeur+",height="+hauteur+","+'scrollbars=yes');
}
function change_photo(path_photo,h,w){
	document.getElementById("cadre_produit").src=path_photo;
	document.getElementById("cadre_produit_a").href=path_photo;
	document.getElementById("cadre_produit").height=h;
	document.getElementById("cadre_produit").width=w;
}

/*1 Pop Up centrada FIN  */

/*----------------------------------------------------*/



/*----------------------------------------------------*/




