var exporthref = '';
var TbHref = '';

$(document).ready(function()
{
    var w = $("#company").height();
    
    $("#leftcol").height(w);
    
    $( '#ctl00_leftColumn_pNavigation' ).scrollFollow();

    $('a#ctl00_content_hplCompanyOptionsExport').attr('href', exporthref);
    $("a#ctl00_content_hplCompanyOptionsExport").attr("target", "_blank");
    
    $('a#ctl00_content_hplLoginFinancialInfo').attr('href', '/Login.aspx?height=260&width=390');
    $("a#ctl00_content_hplLoginFinancialInfo").attr("target", "_blank");
    
    $('a#ctl00_content_hplLoginSalesOffices').attr('href', '/Login.aspx?height=260&width=390');
    $("a#ctl00_content_hplLoginSalesOffices").attr("target", "_blank");
    
    $('a#ctl00_content_hplLoginBrandsAgencies').attr('href', '/Login.aspx?height=260&width=390');
    $("a#ctl00_content_hplLoginBrandsAgencies").attr("target", "_blank");
    
    $('a#ctl00_content_hplLoginNews').attr('href', '/Login.aspx?height=260&width=390');
    $("a#ctl00_content_hplLoginNews").attr("target", "_blank");
    
    $('a#ctl00_content_hplLoginProductsKeywords').attr('href', '/Login.aspx?height=260&width=390');
    $("a#ctl00_content_hplLoginProductsKeywords").attr("target", "_blank");
    
    $('a#ctl00_content_hplLoginBasicInformation').attr('href', '/Login.aspx?height=260&width=390');
    $("a#ctl00_content_hplLoginBasicInformation").attr("target", "_blank");
    
    if(TbHref != '')
        tb_show(null,TbHref,null);
});

function SetHref(type, value)
{
    if(type == 'export')
        exporthref = value;
    else if(type == 'tb')
        TbHref = value;
}

