/* Copyright 2005 E-Church Essentials, LLC */
var eventDetailWindow = null;

/* note: depends on "appPath", a page defined variable */
function Calendar_DayClick(selectedDate, departmentID)
{
  var url = appPath + '/website/WebsiteEventDetail.aspx?date=' + selectedDate;
  if (typeof(departmentID) != "undefined")
    url += "&dept=" + departmentID;
  openPopup(eventDetailWindow, 'WebsiteEventDetail', url, null, null, "toolbar=no,status=no,menubar=no,scrollbars=1,resizable=yes,location=no");
  return false;
}

function echurchLogin(mmid)
{
  var url = 'http://www.' + echurchDomain + '/login/login.aspx?mmid=' + mmid;
  window.open(url, 'ES', 'location=no,menubar=no,scrollbars=no,toolbar=no,resizable=yes');
}

