﻿
// Function to set the initial "to" date of the "to/from" DatePicker control set on the "other.aspx" page,
// based on the "OnClientAfterSelectionChanged" event of the "from" control.

function Other_SetInitialToDate(sender) {

	sender.setSelectedDate(sender.getSelectedDate().addDays(1),"ContentBody_Input_ConferenceEnd")

}
