function showFilled(Value) {
  return (Value > 9) ? "" + Value : "0" + Value;
}
function StartClock24() {
  TheTime = new Date;
  document.clock.showTime.value = showFilled(TheTime.getHours()) + ":" + showFilled(TheTime.getMinutes()) + ":" + showFilled(TheTime.getSeconds());
  setTimeout("StartClock24()",1000)
}


function MakeArray(n) 
{
	this.length = n
	return this
}
monthNames = new MakeArray(12)
monthNames[1] = "Jänner"
monthNames[2] = "Februar"
monthNames[3] = "Marz"
monthNames[4] = "April"
monthNames[5] = "Mai"
monthNames[6] = "Juni"
monthNames[7] = "Juli"
monthNames[8] = "August"
monthNames[9] = "September"
monthNames[10] = "Oktober"
monthNames[11] = "November"
monthNames[12] = "Dezember"
dayNames = new MakeArray(7)
dayNames[1] = "Sonntag"
dayNames[2] = "Montag"
dayNames[3] = "Dienstag"
dayNames[4] = "Mittwoch"
dayNames[5] = "Donnerstag"
dayNames[6] = "Freitag"
dayNames[7] = "Samstag"

function customDateString() 
{
	currentDate = new Date()
	var theDay = dayNames[currentDate.getDay() + 1]
	var theMonth = monthNames[currentDate.getMonth() + 1]
	msie4 = ((navigator.appName == "Microsoft Internet Explorer") && (parseInt(navigator.appVersion) >= 4 ));
	if (msie4) {
	    var theYear = currentDate.getYear()
	}
	else {
	     var theYear = currentDate.getYear() +1900
	}
	return theDay + ", " + currentDate.getDate() + ". " + theMonth + " " + theYear
}




if (document.layers){
window.captureEvents(Event.MOUSEDOWN | Event.MOUSEUP)
window.onmousedown=rightclick;
window.onmouseup=rightclick;

function rightclick(e) 
{
if (e.which == 3) {
// Put right mouse code here
alert('Meisterbetriebe T. & H. WOLK *** Copyright 2005');
return false; 
}
else 
{
return true; 
}
}
}
if (document.all){
function click() {
if (event.button==2) {
alert('Meisterbetriebe T. & H. WOLK *** Copyright 2005')
}
if (event.button==4) {
alert('Meisterbetriebe T. & H. WOLK *** Copyright 2005')}
}
document.onmousedown=click
}

window.status="Meisterbetriebe T. & H. WOLK *** Copyright 2005"



onerror = keinfehler;
function keinfehler()
{return true;}

<!-- Begin
function runClock() {
theTime = window.setTimeout("runClock()", 1000);
var today = new Date();
var display= today.toLocaleString();
status=display;
}
// End -->



