// fixes a Netscape 2 and 3 bug
function getFullYear(d) { // d is a date object
 yr = d.getYear();
 if (yr < 1000)
  yr+=1900;
 return yr;
}
document.write(""
 + isnDays[today.getDay()] + ", " + today.getDate() + ". " + " " + isnMonths[today.getMonth() + 1] + " " + getFullYear(today));
// -->