/**
    @abstract
*/

var _fp_e;

function play(s,n,r)
{
    var args = { s:s, n:n, r:r };
    $.getJSON('/play.php',args,play_load);
    
    var eid = 's9g' + s.toString();
    _fp_e = document.getElementById(eid);
}

function play_load(p)
{
    if (p.http == true) {
        document.location = p.link;
        return;
    }
    
    var o = $(_fp_e).offset();
    var h = $(_fp_e).height() + 2;
    var w = $(_fp_e).width() + 9;
    
    $('#fc').css('border' , 'none');
    $('#fc').css('background' , '#000');
    $('#fc').css('top', o.top - 2 );
    $('#fc').css('left', o.left - 8 );
    $('#fc').css('height', h );
    $('#fc').css('width', w);
    $('#fp').css('top',0);
    $('#fp').css('width',w);
    $('#fp').css('height',h);
    if (p.hd) { $('#fp').width(546); $('#fp').height(308); $('#fp').css('top',50); }
    $f('fp','http://cdn.americanvice.com/swf/flowplayer.commercial-3.1.2.swf',p);
    $('#fc').show();
}