<!--//
//
var before="Amsterdam"
var current="Today!"
var montharray=new Array("Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec")
function countdown(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 futurestring=montharray[m-1]+" "+d+", "+yr
var difference=(Math.round((Date.parse(futurestring)-Date.parse(todaystring))/(24*60*60*1000))*1)
if (difference<=0)
document.write("<font style='font-size: 8pt;'>an idiot <font color='#000000'> is in <a href='http://www.users.globalnet.co.uk/~assist/pages/countries/netherlands.html' class=red><img src='http://www.users.globalnet.co.uk/~assist/gfx/global/weelinkdot.gif' border=0 width=12 height=8><font style='font-size: 8pt;'>"+before+"</a>")
else if (difference==0)
document.write("<font style='font-size: 8pt;'>an idiot <font color='#000000'> is off to <a href='http://www.users.globalnet.co.uk/~assist/pages/countries/netherlands.html' class=red><img src='http://www.users.globalnet.co.uk/~assist/gfx/global/weelinkdot.gif' border=0 width=12 height=8><font style='font-size: 8pt;'>"+before+"</a><b> "+current+"</b></font>")
else if (difference==1)
document.write("<font style='font-size: 8pt;'>an idiot <font color='#000000'> is off to <a href='http://www.users.globalnet.co.uk/~assist/pages/countries/netherlands.html' class=red ><img src='http://www.users.globalnet.co.uk/~assist/gfx/global/weelinkdot.gif' border=0 width=12 height=8><font style='font-size: 8pt;'>"+before+" </a>in <b><font color='#ff0000'>"+difference+" </b></font>day</font>")
else if (difference>0)
document.write("<font style='font-size: 8pt;'>an idiot <font color='#000000'> is off to <a href='http://www.users.globalnet.co.uk/~assist/pages/countries/netherlands.html' class=red><img src='http://www.users.globalnet.co.uk/~assist/gfx/global/weelinkdot.gif' border=0 width=12 height=8><font style='font-size: 8pt;'>"+before+" </a>in <b><font color='#ff0000'>"+difference+"</font></b> days</font>")}//
countdown(2007,07,01)
//-->