﻿/// <reference path="~/Scripts/jquery-1.4.1-vsdoc.js" />
$(document).ready(function ()
{
    $(".scrollable").scrollable();
    $('.programdetail').dialog({ autoOpen: false, width: 500, position: 'center' });
});


function ShowProgramDetail(start, stop, channelId)
{
    $.ajax({
        type: "POST",
        url: "/Program/ProgramDetail",
        data: { start: start, stop: stop, channelId: channelId },
        success: function (msg)
        {
            $(".programdetail").html(msg).dialog('open');
        },
        error: function error(XMLHttpRequest, textStatus, errorThrown)
        {
            alert(errorThrown);
        }
    });
}
