
function countDown(){
  var now=new Date()
  var nowSecs=now.getTime()
  var millenium=new Date(2010,0,1,0,0,0)
  var milleniumSecs=millenium.getTime()
  document.countdown.days.value=Math.floor ((((((milleniumSecs-nowSecs)/1000)/60)/60)/24))
  document.countdown.hours.value=23-now.getHours()
  document.countdown.minutes.value=59-now.getMinutes()
  document.countdown.seconds.value=59-now.getSeconds()
  myTimer=setTimeout("countDown()",1000)
}
//--Stop the timer on page exit.
function stopTimer() {
   clearTimeout(myTimer)
}

	
