function Photo(fichier, titre)
{
	this.fichier = fichier;
	this.titre = titre;
}

function charger_image(image,titre)
{
	photographie=new Photo(image,titre);
	wind=open("include/galerie.html",'popup','width=400,height=300,toolbar=no,scrollbars=no,resizable=yes,status=yes,location=no,directories=no,menubar=no');
	//if(wind.window.focus){wind.window.focus();}
	// Cette ligne est très importante pour FF afin de remttre le popup au premier plan
	wind.window.focus();
	return false;
}
