/* pour agrandir les photos */
function Agrandir(photo) {
var lastSlash
var fileName
lastSlash = photo.lastIndexOf("/");
fileName = photo.substring(lastSlash+1,photo.length);
window.open("galleries/HD/"+fileName, "_blank");
}
/* remettre la page dans index */
function Recadrer() {
if (parent.location.href == self.location.href) {
if (window.location.href.replace)
window.location.replace('index.html');
else
window.location.href = 'index.html';
}}

