
var dCcount=0;
var dC =new Date();
dC.setFullYear(2010);
dC.setMonth(00);
dC.setDate(28);
dC.setHours(17);
dC.setMinutes(00);
dC.setSeconds(00);
function countDown() {
var timeouter=0;
var memberloged=0;
var thetimeshow="";
var oTime =new Date();
var iStampNow=oTime.getTime();
var iStampFuture=dC.getTime();
if ( iStampFuture - iStampNow > 0 ) { oTime.setTime( iStampFuture - iStampNow ) } else { oTime.setTime( iStampNow - iStampFuture)};
stunde=oTime.getHours();
minute=oTime.getMinutes();
secunde=oTime.getSeconds();
if (Math.round((iStampFuture- iStampNow ) / 1000 / 84000)-1 > 0 ) {thetimeshow = (Math.round((iStampFuture - iStampNow) / 1000 / 84000)-1)+" Tag ";}
stunde=oTime.getHours();
minute=oTime.getMinutes();
secunde=oTime.getSeconds();
{thetimeshow += (oTime.getHours())+" Std ";}
{thetimeshow += (oTime.getMinutes())+" Min ";}
{thetimeshow += (oTime.getSeconds())+" Sek";}
window.document.getElementById("oTimeShow0").innerHTML = thetimeshow;
migur = setTimeout( "countDown();", 1000 );
}

