 /*------------------------------------------------------*
  *-------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 switchDiv(monswitch)
{
	document.getElementById("photos_fiche").style.display = (monswitch==1)? 'block' : 'none';
	document.getElementById("galerie").style.display = (monswitch==1)? 'none' : 'block';
}