/************************************************
  
    Site Name: 
	Description: common script
	Version: 
	Author: 
	Last Modified :

************************************************/

function ShowNowYear() {
   var now = new Date();
   var year = now.getFullYear();
   document.write(year);
}
