function showElement( elementID ) {

    var elementObj = document.getElementById( elementID);
    
    if ( elementObj != null )
    {
        elementObj.style.display = "block";
    }
    
}

function hideElement( elementID ) {

    var elementObj = document.getElementById( elementID );
    
    if ( elementObj != null )
    {
        elementObj.style.display = "none";
    }
    
}

