<!-- hide script

//change your event date event here.

var eventdate = new Date("July 6, 2012 12:00:00 GMT+2");

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);

 

            cl.secs.value=toSt(count%60);

            count=Math.floor(count/60);

            cl.mins.value=toSt(count%60);

            count=Math.floor(count/60);

            cl.hours.value=toSt(count%24);

            count=Math.floor(count/24);

            cl.days.value=count; 

 

            setTimeout("countdown()",1000);

 

}// end script -->

