/*

--------------------------------------------------
|             By Aniel Bhulai       040799        |
|				Modified on 101002				  |
|    You're welcome to use/edit this script.      |
|    Keep the comments and drop me a note.        |
--------------------------------------------------
|                 bhulai@dds.nl                   |
| http://www.geocities.com/Tokyo/5570/index.html  |
| http://huizen.dds.nl/~bhulai/index.html         |
--------------------------------------------------
*/

  function YearCopyRight() {

 if (1) {						// check browser
   n = (document.layers) ? 1:0				// n=Netscape
   ie = (document.all) ? 1:0				// ie=MS Explorer

	if (n){
    		var now = new Date();
    		var jaar = now.getYear() + 1900;
    		return jaar;
	}

	if (ie){
    		var now = new Date();
    		var jaar = now.getYear();
    		return jaar;
	}
	else {
	    	var now = new Date();
    		var jaar = now.getYear() + 1900;
    		return jaar;
	}
 }
}

/*    document.write("<font size=-1><I>&copy 1998 -" + YearCopyRight() + " by <a href=\"mailto:bhulai&#64;&#100;&#100;&#115;&#46;&#110;&#108;\">A. Bhulai</a></I></font>"); */

document.write("&copy 1996 -" + YearCopyRight());
