function toggleDisplay(bt, theObject) {
    if (bt) {
      //  theObject.style.visibility = 'visible';
       theObject.style.display = 'inline';
    }
    else {
       //theObject.style.visibility = 'hidden';
        theObject.style.display = 'none';
    }
}
