var date = new Date("February 13, 2010");

var description = "Sapphire (45<sup>th</sup> year) Anniversary Homecoming in the Philippines";

var now = new Date();

var diff = date.getTime() - now.getTime();

var days = Math.floor(diff / (1000 * 60 * 60 * 24));

document.write("<h3><center>");

if (days > 1) {

document.write(days+1 + " days until February 13, 2010 for our<br> " + description);

}

else if (days == 1) {

document.write("Only two days until our " + description);

}

else if (days == 0) {

document.write("Tomorrow is our " + description);

}

else {

document.write("It's our " + description + "!");

}




