<!-- Begin

function lastupdate()
	  {
	    a = new Date(document.lastModified);
	    d = a.getDate(document.lastModified);
	    m = a.getMonth(document.lastModified) + 1;
	    y = a.getYear(document.lastModified);
	    if (y < 2000) 
	      {
	         y = y + 1900;
	      }
	    if (d < 10)
	      {
	         d = "0" + String(d);
	      }
	    if (m < 10) 
	      {
	         m = "0" + String(m);
	      }
	   document.write("Letzte Aktualisierung: " + d + "/" + m + "/" + y);
	  }

//  End -->

<!-- Begin

function year()
	  {
	    a = new Date(document.lastModified);
	    y = a.getYear(document.lastModified);
	    if (y < 2000) 
	      {
	         y = y + 1900;
	      }
	    document.write(y);
	  }

//  End -->

<!-- Begin

function reloadPage(init){
	if (init==true) with (navigator) {if((appName=="Netscape")&&(parseInt(appVersion)==4)) {
		document.pgW=window.innerWidth; document.pgH=window.innerHeight; }}
	else if (window.innerWidth!=document.pgW||window.innerHeight!=document.pgH) { 
		document.location = document.location;
	}
}
if(document.layers) {
	reloadPage(true);
}

//  End -->


/* Autor: Andreas Zierhut, Andreas.Zierhut@t-online.de */

<!-- Begin

var ns = document.layers ? true : false;

function HoverInit()
{
  if (onLoadOld)
    onLoadOld();
  tmpLayer = new Layer(1);
  tmpLayer.bgColor = document.bgColor;
}

var obj = null;
var tmpLayer = null;
var onLoadOld = null;

if (ns) {
  if (window.onload)
    onLoadOld = window.onload;
  window.onload = HoverInit;
  document.captureEvents(Event.MOUSEOVER);
  document.onmouseover = Hover;
}

function Hover(evt)
{
  document.routeEvent(evt);

  if (tmpLayer && tmpLayer.visibility == 'hide' && evt.target.text) {

    obj = evt.target;

    tmpLayer.left = obj.x;
    tmpLayer.top  = obj.y;
    tmpLayer.width = 1;

    with (tmpLayer.document) {
      open();
      write('<nobr><a href="'+obj.href+'" class="hover"' +
            (obj.target ? ' target="' + obj.target + '"' : '') +
            '>'+obj.text+'</a></nobr>');
      close();
    }

    tmpLayer.visibility = 'show';

    document.captureEvents(Event.MOUSEMOVE);
    document.onmousemove = Hoveroff;

  }

}

function Hoveroff(evt)
{
  if (tmpLayer && evt.target != tmpLayer.document.links[0] && evt.target != obj) {

    tmpLayer.visibility = 'hide';
    document.releaseEvents(Event.MOUSEMOVE);

  }
}

//  End -->
