function getCalendar(urlCalendar){
    $.ajax({
        type: "GET",
        url: urlCalendar,       
        success: getCalendarResponse
    });
}

function getCalendarResponse(response,statusText){
    $("#calendar").html(response);
}
