<!-- Begin

// Showcase countdown timer
// COPYRIGHT ? Kitchener-Waterloo Skating Club

today  = new Date();
todayEpoch  = today.getTime();

target = new Date("27 March, 2010"); 
targetEpoch = target.getTime();
daysLeft = Math.floor(((targetEpoch - todayEpoch) / (60*60*24)) / 1000);
document.write(daysLeft);

//  End -->
