function showHideSubLoc(id, callingDiv)
{
    if (id)
    {
        var sublocList = $("#" + id);
        if (!sublocList.is(":visible"))
        {
            sublocList.show();
            
            if (callingDiv)
                $(callingDiv).html("-");
        }
        else
        {
            sublocList.hide();
            
            if (callingDiv)
                $(callingDiv).html("+");
        }
    }
}

