
function AffLastModified()
{
  Mois = new Array("January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December")
  A = new String(document.lastModified)
  M = new String(A)
  J = new String(A)
  M = M.substring(0,2)-1
  M = Mois[M]
  J = J.substring(3,5)
  A = A.substring(6,8)
  document.write( M +" "+ J +", "+ A + "<BR>" )
}  

