// http://www.cpataxprep.net
// taxdate.js - JS Yearly Tax Date-Processing for CPATaxPrep.net

// YOU ONLY NEED TO CHANGE THE YEAR WHEN NECESSARY
// INSERT REFERENCE INTO EACH PAGE ON WEBSITE WHERE APPROPRIATE

// ***********************************************************

var now = new TimeDate();  // create TimeDate object for current time/date
document.write(now.monthName + " " + now.dayNum + now.dayNumSuffix + ", " + now.year);
document.write("<BR><B>");
var now = new TimeDate();  // create TimeDate object for current time/date
var targetDate = new TimeDate("April 15, 2009");  // next tax deadline, April 15th
document.write(get_duration(now, targetDate, DAYS)); // get_duration() function
document.write(" Days To File</B>");
