//****************************************************************
// POPUP-SKRIPT --> Streckenplaene
//****************************************************************

  var popup="", num=0;
  function auf(x,y,bild)
  {
  popup=window.open("", num, "width="+(x+20)+",height="+(y+51)+"")
  popup.document.write("<html>");
  popup.document.write("<head> <link rel='STYLESHEET' type='text/css' href='../font.css'> ");
  popup.document.write("<title>Cyclingnews.de</title></head>");
  popup.document.write("<body bgcolor='#FFFFFF' scroll=no topmarign=2>");
  popup.document.write("<center><img src="+bild+" width="+x+" height="+y+"><p>");
  popup.document.write("<a href='javascript:window.close()'>Fenster schliessen</a></center>");
  popup.document.write("</body></html>");
  num++;
  
  }
//****************************************************************


