﻿$(document).ready(function() {
    if (eventPhasePolling) setTimeout("checkEventPhase();", 60000);
});

function checkEventPhase() {
    $.ajax({
        type: "POST",
        url: "/Svc/Meeting.asmx/GetLiveWebcastPhase",
        data: "{}",
        contentType: "application/json; charset=utf-8",
        dataType: "json",
        success: function(msg) {
            if (msg.d != eventPhase) location.reload(true);            
        }
    });
    setTimeout("checkEventPhase();", 60000);
}
