var fDesc=new Array(); fDesc[0] = "Bookmark registry keys in a menu, accessible from a tray icon. You can directly jump to a saved registry key in Windows RegEdit. Controls to manage keys and add descriptions. 12-JumpReg also allows you to jump to values, copy the currently selected key with one click, or, for example, jump to a key you've copied to the clipboard."; 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 = ''; } }