
function initArray() 
{
  this.length = initArray.arguments.length
  for (var i = 0; i < this.length; i++)
  this[i+1] = initArray.arguments[i]
}

var MOYArray = new initArray("Jan","Feb","Mar","Apr","Mai","Jun","Jul","Aug","Sep","Okt","Nov","Dez");
var LastModDate = new Date(document.lastModified);

function Year(LastModDate) { 

  if (LastModDate.getYear() > 2000)  {
  document.write(LastModDate.getYear());
  }
  else  {
  document.write((LastModDate.getYear())+1900);
  }
}

document.write("Stand: ");
document.write(LastModDate.getDate(),". ");
document.write(MOYArray[(LastModDate.getMonth()+1)],". ");
Year(LastModDate);

