  function popup(image, title, legende, width, height )
  {
    var settings = 'width=' + width + ',height=' + height + ',resizable=yes,menubar=no,status=no,scrollbars=no,menubar=no' ;
    pop = window.open( "", "popup", settings ) ;
    pop.onclick = pop.close ;

    var doc  = pop.document ;
    var html = '<html>'
        + '<head>'
        + '<title>' + title + '</title>'
        + '<link rel="icon" href="Images/favicon.ico" type="image/x-icon"/>'
        + '<link rel="shortcut icon" href="Images/favicon.ico" type="image/x-icon"/>'
        + '<style>'
        + '.legende { color:#aaaaaa; font-size:90%; margin:0; padding:0;}'
        + '.centre { text-align:center; }'
        + '</style>'
        + '</head>'
        + '<body><div id="popup" class="centre"><img src="' + image + '"><br/><span class="legende">'+ legende + '</span></div></body>'
        + '</html>' ;
    doc.open() ;
    doc.write( html ) ;
    doc.close() ;
  }
