gCE_LayerID = "";

//---------------------------------------------------------------------
//
// display_events
//
//---------------------------------------------------------------------
function display_events(id, setTo) 
{
   if (gCE_LayerID != "")
   {
      document.getElementById(gCE_LayerID).style.display = "none";
   }

   document.getElementById(id).style.display = setTo;

   gCE_LayerID = id;
}

//---------------------------------------------------------------------
//
// init_event_dialog
//
//---------------------------------------------------------------------
function init_event_dialog(id)
{
   $(function() {
      $(id).dialog({
         autoOpen: false,
         bgiframe: true,
         height: 140,
         modal: true
      });
   });
}

//---------------------------------------------------------------------
//
// display_event_dialog
//
//---------------------------------------------------------------------
function display_event_dialog(id)
{
   $(id).dialog('open');
}

