<!-- Masqué pour les anciens navigateurs


var Picture = new Array(); // don't change this
var largeur = new Array(); // don't change this
var hauteur = new Array(); // don't change this

Picture[1]  = 'images/photo1_large.jpg';
Picture[2]  = 'images/photo2_large.jpg';
Picture[3]  = 'images/photo3_large.jpg';
Picture[4]  = 'images/photo4_large.jpg';
Picture[5]  = 'images/photo5_large.jpg';
Picture[6]  = 'images/photo6_large.jpg';
Picture[7]  = 'images/photo7_large.jpg';
Picture[8]  = 'images/photo8_large.jpg';
Picture[9]  = 'images/photo9_large.jpg';
Picture[10]  = 'images/photo10_large.jpg';
Picture[11]  = 'images/photo11_large.jpg';
Picture[12]  = 'images/photo12_large.jpg';
Picture[13]  = 'images/photo13_large.jpg';
Picture[14]  = 'images/photo14_large.jpg';
Picture[15]  = 'images/photo15_large.jpg';
Picture[16]  = 'images/photo16_large.jpg';
Picture[17]  = 'images/photo17_large.jpg';
Picture[18]  = 'images/photo18_large.jpg';
Picture[19]  = 'images/photo19_large.jpg';
Picture[20]  = 'images/photo20_large.jpg';
Picture[21]  = 'images/photo21_large.jpg';
Picture[22]  = 'images/photo22_large.jpg';
Picture[23]  = 'images/photo23_large.jpg';
Picture[24]  = 'images/photo24_large.jpg';
Picture[25]  = 'images/photo25_large.jpg';
Picture[26]  = 'images/photo26_large.jpg';
Picture[27]  = 'images/photo27_large.jpg';
Picture[28]  = 'images/photo28_large.jpg';
Picture[29]  = 'images/photo29_large.jpg';
Picture[30]  = 'images/photo30_large.jpg';
Picture[31]  = 'images/photo31_large.jpg';
Picture[32]  = 'images/photo32_large.jpg';
Picture[33]  = 'images/photo33_large.jpg';
Picture[34]  = 'images/photo34_large.jpg';
Picture[35]  = 'images/photo35_large.jpg';
Picture[36]  = 'images/photo36_large.jpg';

var preLoad = new Array();

for (iss = 1; iss < 37; iss++){
preLoad[iss] = new Image();
preLoad[iss].src = Picture[iss];
}

largeur[1] = 680;
largeur[2] = 680;
largeur[3] = 680;
largeur[4] = 680;
largeur[5] = 390;
largeur[6] = 520;
largeur[7] = 680;
largeur[8] = 680;
largeur[9] = 680;
largeur[10] = 680;
largeur[11] = 590;
largeur[12] = 465;
largeur[13] = 680;
largeur[14] = 680;
largeur[15] = 680;
largeur[16] = 520;
largeur[17] = 680;
largeur[18] = 680;
largeur[19] = 680;
largeur[20] = 460;
largeur[21] = 680;
largeur[22] = 460;
largeur[23] = 465;
largeur[24] = 680;
largeur[25] = 635;
largeur[26] = 465;
largeur[27] = 435;
largeur[28] = 270;
largeur[29] = 420;
largeur[30] = 540;
largeur[31] = 265;
largeur[32] = 295;
largeur[33] = 465;
largeur[34] = 680;
largeur[35] = 670;
largeur[36] = 465;


hauteur[1] = 520;
hauteur[2] = 520;
hauteur[3] = 520;
hauteur[4] = 520;
hauteur[5] = 680;
hauteur[6] = 680;
hauteur[7] = 520;
hauteur[8] = 520;
hauteur[9] = 520;
hauteur[10] = 520;
hauteur[11] = 680;
hauteur[12] = 675;
hauteur[13] = 520;
hauteur[14] = 520;
hauteur[15] = 520;
hauteur[16] = 680;
hauteur[17] = 520;
hauteur[18] = 520;
hauteur[19] = 470;
hauteur[20] = 680;
hauteur[21] = 470;
hauteur[22] = 680;
hauteur[23] = 680;
hauteur[24] = 550;
hauteur[25] = 465;
hauteur[26] = 680;
hauteur[27] = 550;
hauteur[28] = 210;
hauteur[29] = 295;
hauteur[30] = 425;
hauteur[31] = 590;
hauteur[32] = 415;
hauteur[33] = 670;
hauteur[34] = 460;
hauteur[35] = 450;
hauteur[36] = 670;


function OuvrirPopupPhoto (photo) {
//Ouvre une fenêtre réduite pour l'affichage des fichiers d'aides
var avant =  window.open (preLoad[photo].src,
photo,
'toolbar=no,' +
'location=no,' +
'directories=no,' +
'status=no,' +
'menubar=no,' +
'scrollbars=no,' +
'resizable=no,' +
'width='+largeur[photo]+',' +
'left=10,' +
'top=10,' +
'height='+hauteur[photo]+','); 
if(avant.focus){avant.focus();}
}


// fin de la section masquée -->