var tID=null;
var tRun=false;
var wd = new Array('So. ','Mo. ','Di. ','Mi. ','Do. ','Fr. ','Sa. ','So. ');
function stopclock (){if (tRun) clearTimeout(tID);tRun=false;}
function startclock () {stopclock();showtime();}
function showtime () {
	var now=new Date();
	var time_string = '<br />';
	var time_part = now.getHours();
	if (time_part < 10) { time_string += '0'; }
	time_string += time_part + ':';
	time_part = now.getMinutes();
	if (time_part < 10) { time_string += '0'; }
	time_string += time_part + ':';
	time_part = now.getSeconds();
	if (time_part < 10) { time_string += '0'; }
	time_string += time_part + '<br />';
	time_string += wd[now.getDay()];
	time_part = now.getDate();
	if (time_part < 10) { time_string += '0'; }
	time_string += time_part + '.';
	time_part = now.getMonth();
	if (time_part < 10) { time_string += '0'; }
	time_string += time_part + '.';
	if (now.getYear() < 1000) {
		time_part = now.getYear()+1900;
	} else {
		time_part = now.getYear();
	}
	time_string += time_part;
	document.getElementById('clock').innerHTML = time_string;
	tID=setTimeout("showtime()",1000);
	tRun=true;
	return true;
}
        
function wechsel(x,Bild) {
    window.document.images[x].src=Bild.src;
    return true;
}

function BlurLink(x) {
  return true;
}

