function disableLink(tgt)
{
    if(tgt.nodeName == 'A')
    {
        if(!tgt.getAttribute('href2'))
        {
            tgt.setAttribute('href2', tgt.href);
            tgt.removeAttribute('href');
            tgt.style.cursor = "pointer";
        }
    }
}

function disableTabs(tgt)
{
    if(tgt.nodeName == 'A')
    {
        if(tgt.getAttribute('href2'))
        {
            location = tgt.getAttribute('href2');
        }
        return false;
    }
}