function clearText(thefield){if (thefield.defaultValue== thefield.value)	thefield.value = ""}
function insertText(thefield){if ( thefield.value == "" )	thefield.value = thefield.defaultValue}

var wdays = new Array(7);
var curDate = new Date();
wdays[1] = "Sonntag";
wdays[2] = "Montag";
wdays[3] = "Dienstag";
wdays[4] = "Mittwoch";
wdays[5] = "Donnerstag";
wdays[6] = "Freitag";
wdays[7] = "Samstag";
var novumDate = wdays[curDate.getDay()+1] + ", " + curDate.getDate() + "." + (curDate.getMonth()+1) + "." + curDate.getFullYear();