var ExportHref = '#';
var TbHref = '';

$(document).ready(function()
{
    
    $('#aBarterClose').click(function()
        {$('#divBarter').hide();}
    )

    $('a#ctl00_content_hplExport').click(function() 
    {
        if(ExportHref != '#')
            LoadExportForm(ExportHref);
        return false;
    });
    
    if(TbHref != '')
    {
        if(TbHref.indexOf('companylist') > -1)
              LoadExportForm(TbHref);
        else
            tb_show(null,TbHref,null);
    }
});

function SetHref(type, value)
{
    if(type == 'export')
        ExportHref = value;
    else if(type == 'tb')
        TbHref = value;
}

function LoadExportForm(href)
{
    var rnd = Math.floor(Math.random()*900001);
    
     $("div#divExportHtml").load(ExportHref + "&rnd=" + rnd, null, function()
     {  
        //standard-height = 475
        var height = '&height=475';
        
        //!= presentation: height = 200.
        if($('div#divExportHtml').find('input#status').attr('value') != 'presentation')
        {
           height = '&height=200'; 
        }
       
        //Visa exportformulär
        tb_show(null,'#TB_inline?width=390&inlineId=divExportHtml&modal=true=' + height,null);
    
     });
}