function daysTill() {
  var daystocount=new Date(2006, 9, 7)
  a_today=new Date()
  if (a_today.getMonth()==1 && a_today.getDate()>day)
  daystocount.setFullYear(daystocount.getFullYear())
  document.write(Math.ceil((daystocount.getTime()-a_today.getTime())/(1000*60*60*24)))
}
