// JScript source code
var inDiv = false;

function setVisibility(id, visibility, parent) {
        
            if ((visibility == 'inline') && (document.getElementById(id).style.display == 'inline'))
                {
                return;
                }
        
        document.getElementById(id).style.display = visibility;
        document.getElementById(id).style.left = document.getElementById(parent).style.left;
       
        //document.getElementById(id).style.top = document.getElementById(parent).style.top +  document.getElementById(parent).style.height + 28;
        }   

