<!--

function trunc(n) {
  return Math.round(n-0.5)
}

// Affiche le nombre "num" sur "len" chiffres, "font" : nom des fichiers gif
function Display_Num( num, len, font) {
  for (i=len-1; i>=0; i--) {
    n = (num - trunc(num/Math.pow(10,i+1))*Math.pow(10,i+1) )/ Math.pow(10,i)
    document.write('<img src="'+font+trunc(n)+'.gif" align=abscenter border=0>')
  }
}

function an2001( len, font) {
var days, dat
  dat = new Date()
  days = Date.UTC(2001,0,1) - Date.UTC(dat.getFullYear(),dat.getMonth(),dat.getDate())
  days = trunc(days/1000 /60 /60 /24)
  Display_Num( days, len, font)
}

//-->
