//<![cdata[
// JQuery on document load event
$(function()
{
    addClickHandlersDetail();
    window_width = $(window).width();
    window_height = $(window).height();
})


/* *******************************************************************************
    '*  Function name:   SelectEvent
    '*  Created By:      Carlos Muniz
    '*  Description:     Displays the data of the selected date on a window
    '*  Input parameters:None
    '*  Return Value:    None
    '*********************************************************************************/    
function SelectEvent(EventId)
{
    $qryString  = constructEventQueryString(EventId, "Get_EventDetail");
    $.ajax({
        url: "Calendar/process_Ajax.php",
        data: $qryString,
        type: "POST",
        dataType: "json",
        success: function(data)
        {
            loadModal(data, "#ModalMask", "#EventDetail");
        }
        
    });
 
}

//]]>

