<!--
	function selectDate(dateElementId) {
		dateElement = document.getElementById(dateElementId);
		if (dateElement) {
			currentDate = dateElement.value;
			if (currentDate) {
				dateTimeBits = currentDate.split(" ");
				dateBit = dateTimeBits[0];
				dateBits = dateBit.split("/");
				timeBit = dateTimeBits[1];
				timeBits = timeBit.split(":");

				day = dateBits[0];
				month = dateBits[1];
				year = dateBits[2];
				hour = timeBits[0];
				minute = timeBits[1];
			} else {
				theDate = new Date();
				day = theDate.getDate();
				month = theDate.getMonth() + 1;
				year = theDate.getFullYear();
				hour = theDate.getHour();
				minute = 0;
			}

			windowWidth = 320;
			windowHeight = 240;
			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 + '&h=' + hour + '&i=' + minute, 'calendar', 'status=no,toolbar=no,location=no,menubar=no,directories=no,resizable=no,scrollbars=no,height=' + windowHeight + ',width=' + windowWidth + ',top=' + windowTop + ',left=' + windowLeft);

		}
	}
//-->