  <!--		
  function setToday()
    {
    var today    = new Date();
    var thisYear = today.getYear();

    /* thisYear should be = 0 .. for selectedIndex */
    if ((0 <= thisYear) && (thisYear < 100))
      {
      alert("Suchtipp: \\nSie können die Suche durch die Angabe des Datums einschränken.")
      }

    else if ((100 <= thisYear) &&(thisYear < 2000)) 
      {
      /* avoid Y2K-Problem */
      thisYear -= 102;
      }

    else if ((2000 <= thisYear)) 
      {
      thisYear -= 2002;
      }


    document.suchform.P_S_Tag.selectedIndex   = today.getDate() - 1;
    document.suchform.P_S_Monat.selectedIndex = today.getMonth();
    document.suchform.P_S_Jahr.selectedIndex  = thisYear;
    }




  function setScreenDimensions()
    {
    document.suchform.P_S_x.value = screen.availWidth;	
    document.suchform.P_S_y.value = screen.availHeight;	
    }



  function init()
    {
    setToday();
    setScreenDimensions();
    }

  //-->

  


