<!--
var eventdate = new Date("June, 10, 2011 16:00:00");

function toSt(n) {
  s=""
  if(n<10) s+="0"
  return s+n.toString();
}

function countdown() {
  cl=document.clock;
  d=new Date();
  count=Math.floor((eventdate.getTime()-d.getTime())/1000);
  if(count<=0)
    {cl.days.value ="---";
     cl.hours.value="--";
     cl.mins.value="--";
     cl.secs.value="--";
     return;
   }
  sekunden=toSt(count%60);
  count=Math.floor(count/60);
  minuten=toSt(count%60);
  count=Math.floor(count/60);
  stunden=toSt(count%24);
  count=Math.floor(count/24);
  tage=count;
  total="Noch "+tage+" Tage, "+stunden+" Stunden, "+minuten+" Minuten und "+sekunden+" Sekunden bis Pfingsten. ";
  cl.total.value=total;
  setTimeout("countdown()",1000);
}
//-->
