var date = new Date("July 20, 2009");
var description = "FenCon Short Story Contest entry deadline";
var now = new Date();
var diff = date.getTime() - now.getTime();
var days = Math.floor(diff / (1000 * 60 * 60 * 24));
var banana = days + 1;
document.write(" ")
if (days > 1) {
document.write("Only " + banana + " days until the " + description);
}
else if (days == 1) {
document.write("Only TWO days until the " + description);
}
else if (days == 0) {
document.write("Only a few hours until the " + description);
}
else if (days == -1) {
document.write(description + " has passed.  Good luck!");
}
else {
document.write(description + " has passed.  Good luck!");
}
document.write(" ");

