// CALENDAR

	dayName = new Array ("Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday");
	monName = new Array ("January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December");
	now     = new Date;

// end CALENDAR

	function popupWindow(newURL) {
		leftPos=0;
		topPos=0;
		if (screen){
			leftPos = screen.width/2-315;
		}
		if (screen){
			topPos = screen.height/2-300;
		}
		popup = window.open(
				newURL,
				'popupWin',
				'width=635px,height=410px,toolbar=no,left='+leftPos+',top='+topPos+',location=no,scrollbars=yes'
		);
		popup.focus();
	}
	
	function popupWindowLarge(newURL) {
		leftPos=0;
		topPos=0;
		if (screen){
			leftPos = screen.width/2-417;
		}
		if (screen){
			topPos = screen.height/2-300;
		}
		popup = window.open(
				newURL,
				'popupWin',
				'width=834px,height=600px,toolbar=no,left='+leftPos+',top='+topPos+',location=no,scrollbars=yes'
		);
		popup.focus();
	}