var statusmsg="TTC Uslar - TTSG Uslar Wiensen"

if (document.layers)
document.captureEvents(event.mouseover | event.mousedown | event.mouseout | event.mouseup)
document.onmouseover=hidestatus
document.onmousedown=hidestatus
document.onmouseout=hidestatus
document.onmouseup=hidestatus


function hidestatus()
  {
   window.status=statusmsg
   return true
  }


function ADatum()
  {
   x = "Letzte Änderung für " + document.title + ": "
       + document.lastModified + " (dl)"
   window.status=x;
  }


function Suchen()
  {
   if(navigator.appName == "Netscape")
     {
          alert("Diese Funktion steht nur im Microsoft Internet Explorer zur " +
                "Verfügung. Ihnen wird deshalb als Ersatz der Gesamt-Spielplan " +
                        "angezeigt!");
          x = open("spl-ges.htm", "main")
     }
   else
     {
      var max = 250;
      document.all.Anzeige.style.display = "none";
      var Suchausdruck = "";

      Suchausdruck = Suchausdruck + " Mannschaft = " + Eingabe.Mannschaft.value;

      document.all.Spielplan.object.Filter = Suchausdruck;
      document.all.Spielplan.Reset();
      document.all.Anzeige.dataSrc = "#Spielplan"
      document.all.Anzeige.style.display = "block";
     }
   }