<!--

function openPhoto(photo,name,w,h) {
  ht = h;
  features = 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbar=no,resizable=no,copyhistory=yes,width='+w+',height='+ht;
  f = window.open("#",name,features);
  f.document.write('<html>');
  f.document.write('<head>');
  f.document.write('<title>Photo</title>');
  f.document.write('<meta http-equiv="Content-Type" content="text/html" charset="iso-8859-1">');
  f.document.write('<link href="style.css" rel="stylesheet" type="text/css">');
  f.document.write('</head>');
  f.document.write('<body text="000000" topmargin="0" leftmargin="0" class="menu">');
  f.document.write('<div align="center">Cliquez sur l\'image pour fermer la fenetre</div>');
  f.document.write('<a href="" onclick="self.close()"><img src="images/'+photo+'" border="0" width="'+w+'" height="'+h+'"></a>');
  f.document.write('</body>');
  f.document.write('</html>');
}
-->