// JavaScript Document
<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->
<!-- Begin
	var months=new Array(13);
	months[1]="januari";
	months[2]="februari";
	months[3]="maart";
	months[4]="april";
	months[5]="mei";
	months[6]="juni";
	months[7]="juli";
	months[8]="augustus";
	months[9]="september";
	months[10]="oktober";
	months[11]="november";
	months[12]="december";
	var time=new Date();
	var lmonth=months[time.getMonth() + 1];
	var date=time.getDate();
	var year=time.getYear();
	if (year < 2000)    // Y2K Fix, Isaac Powell
	year = year + 1900; // http://onyx.idbsu.edu/~ipowell
	document.write(date + " " + lmonth + " " + year);
// End -->
	
/* This script and many more are available free online at
The JavaScript Source!! http://javascript.internet.com
Created by: Spike McLarty | http://www.dosadi.com/ */

function copyDate() {
  var cpyrt = document.getElementById("copyyear")
  if (cpyrt) {
     cpyrt.firstChild.nodeValue = (new Date()).getFullYear();
  }
}


