function affiche_catalogue(num) {
titres=[
'Photos du club 1/2',
'Photos du club 2/2',
'Photos du festival 1/2 - Simultanées',
'Photos du festival 2/2 - Portraits de Joueurs',
'Photos du 12e Open International 1/3 - Salle de jeu, Premieres tables',
'Photos du 12e Open International 2/3 - Les joueurs',
'Photos du 12e Open International 3/3 - Recompenses, Organisateurs'
];

pages=[
'../club/photos1.html',
'../club/photos2.html',
'../festival/photos1.html',
'../festival/photos2.html',
'../festival/2001photos1.html',
'../festival/2001photos2.html',
'../festival/2001photos3.html'
];

document.write('<br><table border=1 cellspacing=1 cellpadding=0 background="/img/fond2.jpg">');
document.write('<tr><th width=500 background="/img/fond4.jpg" class=moyen>Album photo de Franconville</th></tr>');
document.write('<tr><td width=500>');

nb=titres.length;

for (i=0; i<nb; i++) {
 if (num!=i) {document.write('<a href="'+pages[i]+'">');}
 document.write('<img src="/img/fleche.gif" width=10 height=8 border=0 align=bottom hspace=2>');
 if (num==i) {document.write('<b>'+titres[i]+'</b>');} else {document.write(titres[i]);}
 if (num!=i) {document.write('</a>');}
 document.write('<br>');
}

document.write('<br><center><i>Cliquez sur les photos pour les agrandir !</i></center>');

document.write('</td></tr>');
document.write('</table>');
}

function photo(img) {
 temp='photo_popup.php?img='+img;
 window.open(temp,'photo_frnc','scrollbars=no,status=yes,resize=no,width=550,height=440');
}

