function createDefaultCalendar(fieldId, triggerId) {
	Calendar.setup({
		inputField     :    fieldId,		// id of the input field
		ifFormat       :    "%m/%d/%Y",		// format of the input field
        button         :    triggerId,   	// trigger for the calendar (button ID)
		//eventName      :    "click",		// event that will trigger calendar display
		showsTime      :    false,			// will display a time selector
		singleClick    :    true,			// double-click mode
		step           :    0				// show all years in drop-down boxes (instead of every other year as default)
	});
}