<!--

/*<![CDATA[*/

var Srt=new Date(2006,4,24,0,0,0,0);
function Cnt(id,srt,sec){
 this.srt=srt;
 this.obj=document.getElementById(id);
 this.ms=sec*1000;
 this.to=null;
 this.cnt();
}

Cnt.prototype.cnt=function(){
 var oop=this;
 this.obj.innerHTML=Math.floor((new Date()-this.srt)/this.ms);
 this.to=setTimeout(function(){ oop.cnt(); },this.ms);
}
/*]]>*/


-->