  /*Count up from any date script-By JavaScript Kit (www.javascriptkit.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 '") } //enter the count up date using the format year/month/day countup(2001,9,17) 
