
function france()
 {
   var win;
    
   win=window.open("","luftsport","width=500 height=280,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=3 face=arial color=ivory><b>radeln wie Gott in Frankreich . . . . <br>&nbsp;&nbsp;&nbsp;&nbsp;auf verschiedenen Routen durch unser Nachbarland:</b>");
   win.document.writeln("<UL>");
 win.document.writeln("<LI>2009 - <A HREF='http://www.h-pieper.de/nizza-genf.html' target=top><I>von Nizza nach Genf</a>");
 win.document.writeln("<LI>2005 - <A HREF='http://www.h-pieper.de/provence2005.html' target=top><I>eine Runde durch die Provence</a>");


   win.document.writeln("<LI>2004 - <A HREF='http://www.h-pieper.de/agen-bilbao.html' target=top><I>diagonal durch Frankreich und weiter bis Bilbao</a>");
   win.document.writeln("<LI>2001 - <A HREF='http://www.h-pieper.de/france2001.html' target=top><I>Languedoc und Roussillon</a>");
   win.document.writeln("<LI>1999 - <A HREF='http://www.h-pieper.de/sisteron99.html' target=top>von Genf durch die Alpen in die Provence</A>");
   win.document.writeln("<LI>1998 - <A HREF='http://www.h-pieper.de/nevers.html' target=top>durch Lothringen und Burgund an die Loire</A>");
   win.document.writeln("<LI>1997 - <A HREF='http://www.h-pieper.de/cevennen.html' target=top>Cevennen und Camargue</A>");
   win.document.writeln("<LI>1992 - <A HREF='http://www.h-pieper.de/verdon.html' target=top>zwischen Rhône und Verdon</A>"); 

   
   win.document.writeln("</UL>");

   win.moveTo (10,10);
   
   win.setTimeout('window.close()',25000);  
  
 }


