function daysTill(day, month, year) {
  //----------  EDIT THE VARIABLES BELOW  ------------------
  // EDIT THE VARIABLES BELOW
//  var day=	3 // Day
//  var month=	1 // Month
//  var year=	2011 //Year
//  var event=	"end of 111th Congress"
//  var end = 	"days left until"
  //----------  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('<h1>'+write +'</h1><b> '+end+' '+event+'</b>')
  document.write(+write)
}
