/*********************************************************************File Name:	common.jsFile Info:	JavascriptAuthor:		WEB DESIGN LAB		http://www.webdlab.com/Last Modified:	10.01.2009*********************************************************************//*--------------------------------------------------------------------date.js--------------------------------------------------------------------*/function ShowNowYear() {	var now = new Date();	var year = now.getFullYear();	document.write(year);}
