today = new Date();

BigDay = new Date("April 15, 2009")
msPerDay = 24 * 60 * 60 * 1000 ;
timeLeft = (BigDay.getTime() - today.getTime());
e_daysLeft = timeLeft / msPerDay;
daysLeft = Math.floor(e_daysLeft);
e_hrsLeft = (e_daysLeft - daysLeft)*24;
hrsLeft = Math.floor(e_hrsLeft);
minsLeft = Math.floor((e_hrsLeft - hrsLeft)*60);
document.writeln('<font color="#333333">');
document.writeln('<font style="font-size: 8pt">');
document.write("<b>" + daysLeft + " days " + hrsLeft +" hours and " + minsLeft + " minutes </b>");