Events
Counting Events
[inline]
[script language="javascript"]ie5=0;[/script]
[script]
/*
Count up from A1 Javascripts-
http://www.a1javascripts.com
Home to over 150+ free scripts!
*/
montharray=new Array(”Jan”,”Feb”,”Mar”,”Apr”,”May”,”Jun”,”Jul”,”Aug”,”Sep”,”Oct”,”Nov”,”Dec”)
function countup(yr,m,d){
today=new Date()
todayy=today.getYear()
if (todayy <1900)
todayy+=2000
todaym=today.getMonth()
todayd=today.getDate()
todaystring=montharray[todaym]+" "+todayd+", "+todayy
paststring=montharray[m-1]+" "+d+", "+yr
difference=(Math.round((Date.parse(todaystring)-Date.parse(paststring))/(24*60*60*1000))*1)
difference+=" days"
document.write("It\'s been "+difference+" since the Indonesian police announced 10 names to be arrested in relation to the riot in Abepura where 3 policemen and 1 intellgence officer dead.(09 April. '06)")
}
//enter the count up date using the format year/month/day
countup(2006,04,14)
[/script]
[script language="javascript"]ie5=0;[/script]
[script]
/*
Count up from A1 Javascripts-
http://www.a1javascripts.com
Home to over 150+ free scripts!
*/
montharray=new Array(”Jan”,”Feb”,”Mar”,”Apr”,”May”,”Jun”,”Jul”,”Aug”,”Sep”,”Oct”,”Nov”,”Dec”)
function countup(yr,m,d){
today=new Date()
todayy=today.getYear()
if (todayy <1900)
todayy+=2000
todaym=today.getMonth()
todayd=today.getDate()
todaystring=montharray[todaym]+" "+todayd+", "+todayy
paststring=montharray[m-1]+" "+d+", "+yr
difference=(Math.round((Date.parse(todaystring)-Date.parse(paststring))/(24*60*60*1000))*1)
difference+=" days"
document.write("It\'s been "+difference+" since attack by TPN/OPM on Indonesian army in Wembi, Keerom, border area under the command of Leut Gen TPN PB Lukas Tabuni.(09 April. '06)")
}
//enter the count up date using the format year/month/day
countup(2006,04,09)
[/script]
[script language="javascript"]ie5=0;[/script]
[script]
/*
Count up from A1 Javascripts-
http://www.a1javascripts.com
Home to over 150+ free scripts!
*/
montharray=new Array(”Jan”,”Feb”,”Mar”,”Apr”,”May”,”Jun”,”Jul”,”Aug”,”Sep”,”Oct”,”Nov”,”Dec”)
function countup(yr,m,d){
today=new Date()
todayy=today.getYear()
if (todayy <1900)
todayy+=2000
todaym=today.getMonth()
todayd=today.getDate()
todaystring=montharray[todaym]+” “+todayd+”, “+todayy
paststring=montharray[m-1]+” “+d+”, “+yr
difference=(Math.round((Date.parse(todaystring)-Date.parse(paststring))/(24*60*60*1000))*1)
difference+=” days”
document.write(”It\’s been “+difference+” since attack by TPN/OPM on Indonesian army in Wembi, Keerom, border area under the command of Leut Gen TPN PB Lukas Tabuni. (09 April. ‘06)”)
}
//enter the count up date using the format year/month/day
countup(2006,04,09)
[/script]
[/inline]
Leave a Comment
You must be logged in to comment