<!--
    function checkEingabe()
    {
      if (document.myform.login.value == "")
      {
      	alert("Please enter your Login.");
      	document.myform.login.focus();
      	return false;
      }
      if (document.myform.passwort.value == "")
      {
      	alert("Please enter your Password.");
      	document.myform.passwort.focus();
      	return false;
      }
      return true;
    } // checkEingabe

    function init()
    {

      var lLocation = document.location;
      lLocation += "";

      var lIndex = lLocation.indexOf("?login=")

      if (lIndex != -1)
      {
      	document.myform.login.value = lLocation.substring(lIndex + 7);
      	alert("Ungültige Anmeldung");
      	document.myform.login.focus();
      }
      else
      {
        lIndex = lLocation.indexOf("?autoabmeldung=")

        if (lIndex != -1)
        {
         	alert("You were logged off by the system, due to 30 mins inactivity.");
        }
      }

    } // init

    function openWindow(PHREF)
    {
      var lFenster = window.open(PHREF,"newwin","scrollbars=yes,toolbar=yes,status=yes,resizable=yes,menubar=yes,location=yes,directories=yes");
      lFenster.focus();
    } // openWindow

    function openLink(PIndex)
    {
      if (MyNeuesFensterBannerbereich[PIndex] == "ja")
        openWindow(MyLinkBannerbereich[PIndex]);
      else
        document.location = MyLinkBannerbereich[PIndex];
    } // openLink

//-->
