﻿function toggleElement(strElementID, bShow, bAdjustDisplay)
{
    var oElement = document.getElementById(strElementID);
    
    if (oElement)
    {
        if (bShow)
        {
            oElement.style.visibility = "visible";
            if (bAdjustDisplay) oElement.style.display = "inline";
        }
        else
        {
            oElement.style.visibility = "hidden";
            if (bAdjustDisplay) oElement.style.display = "none";
        }
    }
}
