function DirectGo(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;
   msgopen = open(x);
}
