
  function neuesFenster(name) 
  { 
    var faktor = screen.width/2;

    w = window.open("about:blank", "Bilder", "width=800,height=600,scrollbars=no,toolbar=no,resizable=yes");
    w.document.open();
    w.document.writeln('<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">\n');
    w.document.writeln('<html>');
    w.document.writeln('<head>');
    w.document.writeln('<title>Bargen Boote</title>');
    w.document.writeln('</head>');
    w.document.writeln('<body style="margin:0; padding:0;">');
    w.document.writeln('<a href=\'JavaScript:window.close();\'><img src="images/showroom/'+name+'" width="800px" height="600px" border=0 title="" alt=""></a>');
    w.document.writeln('</body>');
    w.document.writeln('</html>');
    w.document.close();
    w.focus();
  }




