/*#########################################################################################
##	A-1 Auto Transport, Inc endScripts.js
##	Functions that need to be declared at the BOTTOM of a document.
##	Created: 2/2/05
##	Author: Brandon D. Ove (brandono@a1autotransport.com)
#########################################################################################*/

function toggleDisplay(hideElementName,showElementName) {
    hide = document.getElementById(hideElementName);
    if (null != hide.style.display) {
    hide.style.display = 'none';
    }
    if (null != showElementName) {
        show = document.getElementById(showElementName);
        if (null != show) {
            show.style.display = 'block';
        }
    }

return true;
}