|
< SCRIPT LANGUAGE = "JavaScript" >
var now = new Date();
// set this value to the countdown date.
var then = new Date("November 18, 2005"); var gap = then.getTime() - now.getTime();
gap = Math.floor(gap / (1000 * 60 * 60 * 24));
document.write(gap);
</SCRIPT> Days Until My Birthday |