/***************************************************************
* Acxiom Corporation (C) 2010- All rights reserved             *
****************************************************************/

function toggleElement(objID) {
        var obj = document.getElementById(objID);

        if (obj && obj.style) {
            if (obj.style.visibility == "hidden" || obj.style.visibility == "") {
                showElement(obj);
            }
            else {
                hideElement(obj);
            }
        }

}
function showElement(obj) {
        if (obj && obj.style) {
            obj.style.visibility = 'visible';
            obj.style.position = 'relative';
        }
    }


    // Hides a layer or other object
    function hideElement(obj) {
        if (obj && obj.style) {
            obj.style.visibility = 'hidden';
            obj.style.position = 'absolute';
        }
    }

