var eventdate = new Date("January 31, 2005 00:00:00 GMT");
var eventdate2 = new Date("March 12, 2005 16:30:00 GMT");

 function toSt(n)
 {s=""
  if(n<10) s+="0"
  return s+n.toString();
 }
 
 function countdown2()
 {cl=document.clock2;
  d=new Date();
  count=Math.floor((eventdate2.getTime()-d.getTime())/1000);
  if(count<=0)
    {cl.days2.value ="----";
     cl.hours2.value="--";
     cl.mins2.value="--";
     cl.secs2.value="--";
     return;
    }
  cl.secs2.value=toSt(count%60);
  count=Math.floor(count/60);
  cl.mins2.value=toSt(count%60);
  count=Math.floor(count/60);
  cl.hours2.value=toSt(count%24);
  count=Math.floor(count/24);
  cl.days2.value=count;    
  
  setTimeout("countdown2()",500);
}

