﻿// JScript File
var last = "dvWTCarter";
var lastLink;

function showInfo(link,div)
{
    if(last != null && typeof(last) != "undefined") 
    {
        var divLast = document.getElementById(last);
        divLast.style.display = "none";
        //divLast.style.font.weight = "normal";
    }
    
    if(lastLink != null && typeof(lastLink) != "undefined")
    {
        lastLink.style.fontWeight = "normal";
    }
        
    var divInfo = document.getElementById(div);
    divInfo.style.display = "block";
    
    link.style.fontWeight = "bold";
    
    last = div;
    lastLink = link;
}

