function daysTill() {
  //----------  EDIT THE VARIABLES BELOW  ------------------
  // EDIT THE VARIABLES BELOW
  var day=	25 // Day
  var month=	9 // Month
  var year=	2010 //Year
  var event=	"we open<br />on September 25 and you see the Redskins in our maze!"
  var end = 	"<strong style='color: #8f0000;'>days</strong>" + " til"
  //----------  END OF EDIT  -------------------------------

  var daystocount=new Date(year, month -1, day)
  today=new Date()
  if (today.getMonth()==month && today.getDate()>day)
  daystocount.setFullYear(daystocount.getFullYear())
  var oneday=1000*60*60*24
  var write = (Math.ceil((daystocount.getTime()-today.getTime())/(oneday)))
  document.write('Only <strong style="color: #8f0000;">'+write +'</strong> '+end+' '+event)
}
