  
  // Fenster-Namen setzen
    window.name="mvv";
  
  // EFA-Schnellauskunft
  function parsedate(date) {
    var day = date.substring(0,2);
    var month = date.substring(3,5);
    document.fahrplanauskunft.itdDateDay.value = day;
    document.fahrplanauskunft.itdDateMonth.value = month;
  }

    /* PopUp &ouml;ffnen  */
    function PopUp(image,xb,yb,scrollbars) {
      if (xb < 944) {
        width = xb+20;
      } else {
        width = 974;
        scrollbars=1;
      }

      if (yb < 800) {
        height = yb+25;
      } else {
        height = 800;
        scrollbars=1;
      }

      var win_para = "toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=" + scrollbars + ",resizable=0,top=0,left=0,width=" + width + ",height=" + height;
      popup = window.open(image, "PopUp", win_para);
      popup.focus()
    }

    /* Netscape 4.x  */
  if (document.layers) {var ns4 = true;
  }


  function Bildwechsel(Bild,Bildobjekt)
  {
  if (document.images)
     {
      document.images[Bild].src = Bildobjekt.src;
     }
  }
