test




/*
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 < 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(today string)-Date.parse(paststring))/(24*60*60*1000))*1)
document.write("<font size=\"+1\">" + difference + " days ago, John Kerry <a href=\"http://polipundit.com/index.php?p=6230#Form180Promise\">promis ed, on national TV</a>, to sign <a href=\"http://www.archives.gov/facilities/mo/st_louis/military_personnel_records/standard_form_180.html\">form SF-180</a> and release his military records. He has yet to do so.")
}
//enter the count up date using the format year/month/day
countup(2005,01,30)
</script>


