<script>

/*
Count up from any date script-
By Website Abstraction (www.wsabstract.com)
Over 200+ free scripts here!
*/

var montharray=new Array("Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec")

function countup(yr,m,d){
var today=new Date()
var todayy=today.getYear()
if (todayy < 1000)
todayy+=1900
var todaym=today.getMonth()
var todayd=today.getDate()
var todaystring=montharray[todaym]+" "+todayd+", "+todayy
var paststring=montharray[m-1]+" "+d+", "+yr
var difference=(Math.round((Date.parse(todaystring)-Date.parse(paststring))/(24*60*60*1000))*1)
difference+=" days"
document.write("It\'s been "+difference+" since the launch of Website Abstraction!")
}
//enter the count up date using the format year/month/day
countup(1997,12,05)
</script>

 
CountDown

<font color="#FF00FF"><font size="4"><b><script language="JAVASCRIPT"><!-- hide this script tag's contents from old browsers

today = new Date();

BigDay = new Date("January 11, 2006")
msPerDay = 24 * 60 * 60 * 1000 ;
timeLeft = (BigDay.getTime() - today.getTime());
e_daysLeft = timeLeft / msPerDay;
daysLeft = Math.floor(e_daysLeft);
e_hrsLeft = (e_daysLeft - daysLeft)*24;
hrsLeft = Math.floor(e_hrsLeft);
minsLeft = Math.floor((e_hrsLeft - hrsLeft)*60);
document.write("Mancano " + daysLeft + " giorni " + hrsLeft +" ore e " + minsLeft + " minuti alla partenza di NEW HORIZON<P>");

// -- done hiding from old browsers --></script>
</b></font></font>