﻿function SetLinkSelected(linkname)
{
    document.getElementById("LinkSwitch_"+linkname).innerHTML='<span style="font-weight: bold; color: #8f0f05; height: 27px;">'+linkname+'</span>';
    document.getElementById("LinkSwitchCell_"+linkname).style.backgroundColor = "#eedbda"; 
}
function SetLinkActive(linkname)
{
    document.getElementById("LinkSwitch_"+linkname).innerHTML='<a href="javascript:SetMode(\''+linkname+'\')" class="LinkSwitch">'+linkname+'</a>';
    document.getElementById("LinkSwitchCell_"+linkname).style.backgroundColor = "#f6edec";  
}

function ShowPanel(pname)
{  
    document.getElementById("Panel_"+pname).style.display = "block";
}

function HidePanel(pname)
{
    document.getElementById("Panel_"+pname).style.display = "none";
}

function SetMode(mode)
{
    SetLinkSelected(mode);
    ShowPanel(mode); 
    if (mode != 'Propriétaires') 
    { 
        SetLinkActive('Propriétaires');
        HidePanel('Propriétaires');
    }
    if (mode != 'Entreprise')
    {
       SetLinkActive('Entreprise');
       HidePanel('Entreprise');
    } 
    if (mode != 'Produits')
    { 
        SetLinkActive('Produits');
        HidePanel('Produits');
    } 
}