// JavaScript Document
function countdown() {
//Set the two dates
today=new Date()
var target_date=new Date(today.getFullYear(), 05, 24) //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 Mid-Year Meeting! <br><a href='2010-mid-year-meeting.html'>learn more & register</a>")
}


