
function fenster()
 {
   var win;
    
   win=window.open("","luftsport","width=350 height=285,resizable=yes");

   win.document.open("text/html");
   win.document.linkColor="yellow";
   win.document.vlinkColor="white";
   win.document.alinkColor="red";
   win.document.bgColor="blue";
   win.document.writeln("<font size=2 face=arial color=ivory><b>Luftsport ist eine feine Sache . . . . <br>&nbsp;&nbsp;&nbsp;&nbsp;und Segelfliegen ganz besonders . . . .</b>");
   win.document.writeln("<UL>");
   win.document.writeln("<LI><A HREF='http://aeroclub.sisteron.free.fr' target=top><I>A&eacute;roclub de Sisteron</a>");
   win.document.writeln("<LI><A HREF='http://www.schwarze-heide.com' target=top>Flugplatz Schwarze Heide</A>");
   win.document.writeln("<LI><A HREF='http://www.daec.de' target=top>Deutscher Aero Club e.V.</A>");
   win.document.writeln("<LI><A HREF='http://www.aeroclub-nrw.de' target=top>DAeC - LV NRW e.V.</A>");
   win.document.writeln("<LI><A HREF='http://www.salto-skydance.de' target=blank>Salto-skydance</A>");       
   win.document.writeln("<LI><A HREF='http://www.dulsv.de' target=top>Ultraleicht-Segelflug</A><br><br>");
   win.document.writeln("<LI><A HREF='http://www.h-pieper.de/lsv/index.html' target=top>50 Jahre Luftsport in Dinslaken</A><br><br>");
   
   win.document.writeln("</UL>");

   win.moveTo (10,10);
   
   win.setTimeout('window.close()',15000);  
  
 }

