/* author: Robert M. Howell Qual-Tek, Inc. qualtek.com */
/* Generated by AceHTML Freeware http://freeware.acehtml.com */
/* Creation date: 11/10/2008 */
<!--Hide Script from Old Browsers

  now = new Date

  holiday = new Date (now.getYear(),11,25) //The last two integers in this line represent the date
  if (holiday.getTime() < now.getTime()) {    //the 11 is for December and the 25 represensts the date
    holiday.setYear(holiday.getYear()+1)
  }

  function dayToDays (inTime) {
    return (Math.floor(inTime.getTime() /(1000 * 60 * 60 * 24)))
  }

  function daysTill(inDate) {
    return dayToDays(inDate) - dayToDays(now)
  }

//End Hiding script from old browsers-->