var dh=new Date()
var j=dh.getYear()
var d=dh.getDay()
var ds=dh.getDate()
var m=dh.getMonth()+1
if (j < 1000){j+=1900}
if (m <10){m="0"+m}
if (ds <10){ds="0"+ds}
var ua=new Array()
var u=-1
var zh= new Date()
var h=zh.getHours()
var mn=zh.getMinutes()
var s=zh.getSeconds()
if (eval(h) <10) {h="0"+h}
if (eval(mn) < 10) {mn="0"+mn}
if (s < 10) {s="0"+s}
var zh = h+":"+mn+":"+s
function datum() {
	if (document.all || document.getElementById || document.layers) {
		document.write(""+dl[d]+", "+ds+"."+m+"."+j+"")
	}
}
function uhrzeit() {
	u++
	if (document.all || document.getElementById || document.layers) {
		ua[u]="uhr"+u
		document.write("<span id='"+ua[u]+"' style='position:relative'>"+zh+"<\/span>")
	}
}
function aktuellezeit() {
	zh= new Date()
	h=zh.getHours()
	mn=zh.getMinutes()
	s=zh.getSeconds()
	if (eval(h) <10) {h="0"+h}
	if (eval(mn) < 10) {mn="0"+mn}
	if (s < 10) {s="0"+s}
	zh = h+":"+mn+":"+s
	if (document.all) {
		for (i=0;i<=ua.length-1;i++) {
			var uhr=eval(ua[i])
			uhr.innerHTML=zh
		}
	}
	if (document.getElementById) {
		for (i=0;i<=ua.length-1;i++) {
			document.getElementById(ua[i]).innerHTML=zh
		}
	}
	var timer=setTimeout("aktuellezeit()",1000)
}
window.onload=aktuellezeit

//delrand
function ExplorerFix() {
	for (a in document.links) {
		document.links[a].onfocus = document.links[a].blur; 
	}
}
if(document.all) document.onmousedown = ExplorerFix;

// Statustext
function statuss() {
        window.status = "Fertig";
	setTimeout("statuss()", 5000);
}
statuss();