<!--
	  ie  = ( document.styleSheets && document.all ) ? true : false;
      ie5 = ( ie  && document.getElementById ) ? true : false;
      ns4 = ( document.layers ) ? true : false;
      ns6 = ( document.getElementById && !document.all && document.bgColor ) ? true : false;
      opera5 = ( !document.bgColor ) ? true : false;
	  if (ns4 == true)
	  alert('Tut mir leid: \n Sie verwenden den Netscape Navigator in der Version 4+ und können daher auf dieser Website nicht navigieren.\n Die CSS-Unterstützung dieses veralteten Browsers ist miserabel und deshalb für die hier eingesetzte neuartige CSS-Navigation nicht zu gebrauchen.\n Wir empfehlen Ihnen, einen neuen Browser zu installieren.');

	// CREDITS:
	// Inline clock: fits anywhere into any text
	// by Urs Dudli and Peter Gehrig
	// Copyright (c) 2000 Peter Gehrig and Urs Dudli. All rights reserved.

	var clockid=new Array()
	var clockidoutside=new Array()
	var i_clock=-1
	var thistime= new Date()
	var hours=thistime.getHours()
	var minutes=thistime.getMinutes()
	var seconds=thistime.getSeconds()
	if (eval(hours) <10) {hours="0"+hours}
	if (eval(minutes) < 10) {minutes="0"+minutes}
	if (seconds < 10) {seconds="0"+seconds}
	var thistime = hours+":"+minutes+":"+seconds

	function writeclock()
	{
		i_clock++
		if (document.all || document.getElementById || document.layers)
		{
			clockid[i_clock]="clock"+i_clock
			document.write("<span id='"+clockid[i_clock]+"' style='position:relative' class='datum'>"+thistime+"</span>")
		}
	}

	function clockon()
	{
		thistime= new Date()
		hours=thistime.getHours()
		minutes=thistime.getMinutes()
		seconds=thistime.getSeconds()
		if (eval(hours) <10) {hours="0"+hours}
		if (eval(minutes) < 10) {minutes="0"+minutes}
		if (seconds < 10) {seconds="0"+seconds}
		thistime = hours+":"+minutes+":"+seconds

		if (document.all)
		{
			for (i=0;i<=clockid.length-1;i++)
			{
				var thisclock=eval(clockid[i])
				thisclock.innerHTML=thistime
			}
		}

		if (document.getElementById)
		{
			for (i=0;i<=clockid.length-1;i++)
			{
				document.getElementById(clockid[i]).innerHTML=thistime
			}
		}
		var timer=setTimeout("clockon()",1000)
	}
	window.onload=clockon


	// W. Jansen Web-Toolbox.net
	function Datum(Zahl)
	{
		var now = new Date();
		var TageKurz = new Array ("So", "Mo", "Di", "Mi", "Do", "Fr", "Sa");
		var MonateKurz = new Array ("Jan", "Feb", "März", "Apr", "Mai", "Jun", "Jul", "Aug", "Sep", "Okt", "Nov", "Dez")
		var date = ((now.getDate()<10) ? "0" : "")+ now.getDate();

		function VierZeichen(number)
		{
			return (number < 1000) ? number + 1900 : number;
		}

		if(Zahl == 1)
		{
			heute = TageKurz[now.getDay()]+ ". "  + date + ". " + MonateKurz[now.getMonth()] + " " +(VierZeichen(now.getYear())) ;
		}
		document.write('' + heute);
	}

//-->
