// JavaScript Document
function countdown() {
//Set the two dates
today=new Date()
var target_date=new Date(today.getFullYear(), 09, 20) //Month is 0-11 in JavaScript
//Set 1 day in milliseconds
var one_day=1000*60*60*24

//Calculate difference btw the two dates, and convert to days
document.write(Math.ceil((target_date.getTime()-today.getTime())/(one_day))+
" days until our Annual Meeting! <br>Check back often for updates (<a href=\"http://massmha.org/news.html\">In the News</a>)")
}



