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)
var differencey=(Math.round(todayy-2006))

var url = ""+window.location;
var urlparts = url.split('/');
var host = urlparts[3];

if (host=='en')
document.write("#"+difference+" &bull; Volume "+differencey+"")
else
document.write("#"+difference+" &bull; Jaargang "+differencey+"")
}
//enter the count up date using the format year/month/day
countup(2008,10,17)