//<![CDATA[
var initAttempts = 0;

function setReservationDates(e) {
	var sd = datePickerController.getDatePicker("Appt_Date");
        // Check the value of the input is a date of the correct format
        var dt = datePickerController.dateFormat(this.value, sd.format.charAt(0) == "m");

	return;
}

// setup event handlers
$(document).ready(function() {
	// Clear any old values from the inputs (that might be cached by the browser after a page reload)
        document.getElementById("Appt_Date").value = "";
        // Add the onchange event handler to the start date input
	$("#Appt_Date").change(setReservationDates);

});
//]]>