// JavaScript Documentvar myDialog = null;function calendarPicture() {	var today = new Date()	var monthNumber = today.getMonth()+1	document.write("<a href='events.html'><img src='images/calendars/" + monthNumber + ".gif' border=0></a>")	//alert("<img src='images/calendars/" + monthNumber + ".gif' border=0>")		//alert(monthNumber);}function linkAlert() {//	alert("Please note that you are leaving the U & I Inc., USA (U & I) website, and the U & I Privacy Statement is not applicable when linking to other websites.\n\nTo return to the U & I website, simply close the new browser window.")	alert("Please note that you are leaving the U & I Inc., USA (U & I) website, and the U & I Privacy Statement is not applicable when linking to other websites.")}function copyRight(){	document.write("&copy; 2005-2006 U&amp;I Inc., USA. All rights reserved.");}function linkConfirm(message) {	return confirm(message);}function displayDialog(url,winWidth,winHeight){				var l = (screen.width-winWidth)/2	var t = (screen.height-winHeight)/2	var des = "screenX=" + l + ",screenY=" + t + ",left=" + l + ",top=" + t + ",width=" + winWidth + ",height=" + winHeight+		",scrollbars=no,status=no";	if ((myDialog != null) && !myDialog.closed) {		myDialog.close();	}	myDialog = open(url,"myDialog",des)}