function cleanit(thefield){if(thefield.defaultValue==thefield.value){thefield.value="";};}

function SetEmo(emo){document.form.nachricht.value+=''+emo;document.form.nachricht.focus();}

function checkHolidays(){
 var now = new Date();
 var holidays = new Date(2006,03,21,0,0,00,00);
 var diff = holidays.getTime() - now.getTime();
 var days    = (Math.floor(   diff / 86400000)).toString();
 var hours   = (Math.floor((  diff % 86400000) / 3600000)).toString();
 var minutes = (Math.floor((( diff % 86400000) % 3600000) / 60000)).toString();
 var seconds = (Math.floor((((diff % 86400000) % 3600000) % 60000) / 1000)).toString();
 document.holidays.date.value = days + " Tage " + hours + " Stunden " + minutes + " Minuten " + seconds + " Sekunden";
 window.setTimeout("checkHolidays()",1000);
 
}

function set_cdate(date)
{
window.document.post_cal.cdate.value = date;
}
