// function to load the calendar window.
function ShowCalendar(FormName, FieldName, parentFunction) {
  window.open("../window_datepopup.cfm?FormName=" + FormName + "&FieldName=" + FieldName + "&parentFunction=" + parentFunction, "CalendarWindow", "width=250,height=250");
}
function ShowCalendar2(FormName, FieldName) {
  window.open("../window_datepopup2.cfm?FormName=" + FormName + "&FieldName=" + FieldName, "CalendarWindow");
}

function ShowCalendarShowAll(FormName, FieldName) {
  window.open("../window_datepopup.cfm?ShowAll=1&FormName=" + FormName + "&FieldName=" + FieldName, "CalendarWindow", "width=250,height=250");
}

function ShowCalendarShowAll2(FormName, FieldName, parentFunction) {
  window.open("../window_datepopup.cfm?ShowAll=1&FormName=" + FormName + "&FieldName=" + FieldName + "&parentFunction=" + parentFunction, "CalendarWindow", "width=250,height=250");
}

