<!-- COUNTUP --> <!-- This goes in the HEAD of the html file --> <script language="JavaScript" type="text/javascript"> <!-- Copyright 2003, Sandeep Gangadharan --> <!-- For more free scripts go to http://www.sivamdesign.com/ --> <!-- function countUp() { month = 'Jan'; // change the month to the one you want in the same format as shown date = '01'; // change the date to the one you want in the same format as shown year = '2002'; // change the year to the one you want in the same format as shown theDate = month + ' ' + date + ' ' + year; now = new Date(); setdate = new Date(theDate); timer = (now - setdate) / 1000 / 60 / 60 / 24; timer = Math.round(timer); document.write(timer + " days"); } countUp() // --> </script>