var fDesc=new Array(); fDesc[0] = "PBSearch is the fastest and easiest object searcher for PowerBuilder. PBSearch supports PowerBuilder versions 8 thru 12 (Classic Only) as well as PocketBuilder.PBSearch has a command line argument to tell it which version of PowerBuilder to work with. If this argument isn't given, a window will pop up asking which version to use."; 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 = ''; } }