// JavaScript Document
function countdown() {
//Set the two dates
today=new Date()
var target_date=new Date(today.getFullYear(), 02, 26) //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 MHM Certification Course&nbsp;&nbsp;<br><a href='news.html'>Register Now!</a>")
}


