﻿// JScript File
var PosElement = null;
function ShowEventDetails(ID, Element)
{
    PosElement = Element;
    
    CalendarService.GetMeetingDetail(ID, GetEventDetailSuccess);
 
}

function GetEventDetailSuccess(result, eventArgs)
{
    
    ShowMessageBox(result[1],result[2],null,"View Event", PosElement);
}