<!--
  
  function switch_visible(id) {
    if (returnObjById(id).style.display == 'none') 
      returnObjById(id).style.display = '';
    else
      returnObjById(id).style.display = 'none';
  }
  
//-->