Count down to any time script3
in the body type:
<script name="JavaScript">
<!--//
today = new Date()
millenium = new Date("April 8, 2004") // To use this script for counting days and
// hours to some other date than the new Millenium
// remove the date "April 8" and put your
// own date there
millenium.setYear = today.getYear;
daysLeft = (millenium.getTime() - today.getTime()) / (1000*60*60*24);
daysLeft = Math.round(daysLeft);
document.write("<font face=Helvetica,Arial size=1 color=#000000>"+daysLeft+" days left<BR>until April 8, 2004.");
//-->
</script>