function showPopup()
{
    var flashvars = {
        'flvSource': 'webmovie_edit_titles_superlo.flv',
        'flvSkin': '/flash/SkinUnderPlaySeekMute.swf'
    };
    var params = {
        wmode: 'transparent'
    };
    var attributes = {};
    
    $(this).jPop(
        {
            'c_type': 'swf',
            'c_content': 
                {
                    'file': '/flash/flvPlayer.swf',
                    'width': '503',
                    'height': '381',
                    'flashvars': flashvars,
                    'params': params,
                    'attributes': attributes
                }
        });
}

function hidePopup()
{
    $(this).jPop('hide');
}   

$(document).ready(function()
{    
    $(this).jPop('init');
    
    $('#code_go').click(function()
    {       
        $.post(
            '/lib/ajax.php',
            {
                'mode': 'mag_code',
                'code': $('#txt_code').val()    
            },
            function(data)
            {
                $(this).jPop(
                {
                    'c_type': 'html',
                    'c_content': 
                        {
                            'html': data
                        }
                });
                
                $('#txt_code').val('');    
            }
        );
        
        return false;
    });
});
