 /*------------------------------------------------------*
  *-------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);
}

/*1 Pop Up centrée FIN  */

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

function swapPhoto(id, src_photo)
{
	if (document.getElementById) {
		/*document.getElementById(id).src = tab_oeuvres[indice]["URL_photo"];		*/
		document.getElementById(id).src = '/admin/photos/produits_couleurs/'+src_photo;		
	}
	else {
		window.open(url);
	}	
}
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;
}

