<!--

toDate=new Date(2002, 12, 25, 18, 15, 0);
function calcDiff()
{
            _curr=new Date();
            diff=(_curr.getTime()-toDate.getTime())/1000;
            months=(_curr.getYear()-2002)*12+_curr.getMonth()-toDate.getMonth()
            num=diff*4380+318000000000;
        document.counter.num2.value=Math.round(num);
        setTimeout("calcDiff()",100);
}

  // -->


