//fonction qui ouvre la fenętre "sesame_zoom_photo" dans laquelle sera affiché la photo clickée
function SA_ouvrePhoto( photo )
{
	photo = "../photos/agrandissement.php?SA_imgName=" + photo;
	document.fen_photo = window.open( photo, "sesame_zoom_photo", "resizable=NO, dependent=0, toolbar=0,titlebar=0,status=0,scrollbars=0,location=0,hotkeys" );
	document.fen_photo.window.focus();
}

//fonction qui ouvre la fenętre "sesame_fichier"
function SA_ouvreFichier(w, h, src )
{
		y = (screen.availHeight-40-h)/2;
		x = (screen.availWidth-w)/2;
		document.fen_photo = window.open( src, "sesame_fichier", "resizable=YES, dependent=0, toolbar=0,titlebar=0, menubar=0, status=0,scrollbars=0,location=0,hotkeys, width="+w+", height="+h+", top="+y+", left="+x );
	document.fen_photo.window.focus();
}