
function _playVideo(fTitle, fileName, fWidth, fHeight) {
    $("#dialog").html('<div id="flashCont"></div>');
    $('#flashCont').flashembed({
            src: '/swf/FLVPlayer_Progressive.swf',
            width: fWidth + 'px',
            height: fHeight + 'px'
        },
        {
            MM_ComponentVersion: '1',
            skinName: '/swf/Corona_Skin_2',
            streamName: fileName,
            autoPlay: 'true',
            autoRewind: 'false'
        }
    );
    $("#dialog").dialog("option", "position", ["center","center"]);
    $("#dialog").dialog("option", "title", fTitle);
    $("#dialog").dialog("option", "height", (fHeight + 100));
    $("#dialog").dialog("option", "width", (fWidth + 70));
    $("#dialog").dialog("option", "resizable", false);
    $("#dialog").dialog({ beforeClose: function() { $("#dialog").html('&nbsp;'); } });
    $("#dialog").dialog("open");
}


function _playVideoIFrame(fTitle, url) {
    $("#dialog").html('<iframe src="' + url + '" width="640" height="360" frameborder="0"></iframe>');
    $("#dialog").dialog("option", "position", ["center","center"]);
    $("#dialog").dialog("option", "title", fTitle);
    $("#dialog").dialog("option", "height", 480);
    $("#dialog").dialog("option", "width", 705);
    $("#dialog").dialog("option", "resizable", false);
    $("#dialog").dialog({ beforeClose: function() { $("#dialog>iframe").remove(); } });
    $("#dialog").dialog("open");
}

