Calendar.setup2({
  inputField     :    "f_date_e",     // id of the input field
  ifFormat       :    "%Y/%d/%m",     // format of the input field (even if hidden, this format will be honored)
  displayArea1   :    "calendar_month2",       // ID of the span where the date is to be shown
  displayArea2   :    "calendar_date2",       // ID of the span where the date is to be shown
//  displayArea    :    "show_e",       ID of the span where the date is to be shown
  daFormat       :    "%A, %B %d, %Y",// format of the displayed date
  button         :    document.getElementById("f_trigger2_e") ? "f_trigger2_e" : "f_trigger_e",

// trigger button (well, IMG in our case)

  align          :    "Tl",           // alignment (defaults to "Bl")
  singleClick    :    true,
  dateStatusFunc :    function (date)
  {
    var today = new Date();

    return (date.getTime() < (today.getTime()-(3600 * 24 * 1000)));
  }

});

