// JavaScript Document
var copyright = function(){

};

copyright.prototype = {
 
   dispNowYear : function(){
	   
	   var currentTime = new Date();
	   
		document.write(currentTime.getYear() + 1900);
	}
};

