   function DirectGo(x)
   {
      if(x == "nothing")
      {
         document.forms[0].reset();
         document.forms[0].elements[0].blur();
         return;
      }
      else if(x == "end") top.location.href = parent.frames[0].location;
      else
      {
         location.href = x;
         // location.href = 'http://www.alle-wetter.de/' + x;
         document.forms[0].reset();
         document.forms[0].elements[0].blur();
      }
   }

function DGo(x){
   temp = "";
   if((navigator.appName == "Netscape") && (navigator.appVersion.charAt(0) >= 4))
   {
      for(i = 0; i < x.length; i++)
      {
         if (x[i] == " ")
         {
            temp += "_";
         }
         else
         {
            temp += x[i];
         }
      }
   }
   else
   {
      temp = x;
   }
      
   // x = "http://www.alle-wetter.de/cgi-bin/alle-wetter/alle_stadt.pl?NAME=" + temp;   
   x = "/cgi-bin/alle-wetter/alle_stadt.pl?NAME=" + temp;   
   
   msgWindow = window.open(x, "displayWindow", "toolbar=no,width=780,height=550,directories=no,status=no,scrollbars=yes,resize=yes,menubar=no")
}        

function openPopup() {
 /* window.open('popup.html','Popup','width=200,height=300,directories=no,resizable=no,toolbar=no,status=no,menubar=no,scrollbars=no'); */
 /* msgWindow=window.open('http://www.wolkenlos.de/index.html','wolkenlosReise','width=800,height=400,directories=no,resizable=yes,toolbar=yes,status=no,menubar=yes,scrollbars=yes'); */
 /* msgWindow.blur(); */
}


