function today()
			{
			var bName = navigator.appName;
			var d = new Date();
			// Note that the deprecated getYear property is used instead of the Y2K-compliant
			// getFullYear. However, getFullYear was not introduced until JavaScript 1.3.
			return ( d.getFullYear() );
			}
		var myToday;
		if (window.parent.today != null)
			myToday = window.parent.today();
		else
			myToday = today();
			document.write(myToday);