<!-- hide from old browsers
function countMain() {
 var today = new Date()
 var targetDate = new Date("11/27/2009") //use full year 
 var timeBeforeTarget = Math.floor(( targetDate.getTime()
         - today.getTime()) / 86400000)
 var msg = "<B>There are "  + (timeBeforeTarget +1)  
          + " days until our next production <br>'LOVELACE'S ACADEMY'!</B>"
 document.write(msg)
}
 //-->