<!--
	function selectDate(dateElementId) {
		dateElement = document.getElementById(dateElementId);
		if (dateElement) {
			currentDate = dateElement.value;
			if (currentDate) {
				dateBits1 = currentDate.split("/");
				dateBits2 = currentDate.split("-");
				if (dateBits1.length == 3) {
					dateBits = dateBits1;
				} else if (dateBits2.length == 3) {
					dateBits = dateBits2;
				}
	
				day = dateBits[0];
				month = dateBits[1];
				year = dateBits[2];
			} else {
				theDate = new Date();
				day = theDate.getDate();
				month = theDate.getMonth() + 1;
				year = theDate.getFullYear();
			}

			windowWidth = 300;
			windowHeight = 230;
			windowLeft = (screen.width - windowWidth) / 2;
			windowTop = (screen.height - windowHeight) / 2;
			if (windowLeft < 0) windowLeft = 0;
			if (windowTop < 0) windowTop = 0;

			var calWindow = window.open('/calendar.php?e=' + dateElementId + '&y=' + year + '&m=' + month + '&d=' + day, 'calendar', 'status=no,toolbar=no,location=no,menubar=no,directories=no,resizable=no,scrollbars=no,height=' + windowHeight + ',width=' + windowWidth + ',top=' + windowTop + ',left=' + windowLeft);
			
		}
	}
//-->