var fDesc=new Array(); fDesc[0] = "QBzr is a cross-platform GUI front end for Bazaar, based on Qt toolkit. QBzr provided GUI frontend for many core bzr commands and several universal dialogs and helper commands. Equivalents for core bzr commands has the same names as CLI commands but with prefix "q". qadd - GUI for adding files or directories. qannotate - Show the origin of each line in a file. qbind - Convert the current branch into a checkout of the supplied branch."; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }