var fDesc=new Array(); fDesc[0] = "Gibraltar Loupe is a log analysis tool that allows you to sort, group, filter and highlight logs so that you can quickly find the root cause of an issue even in logs containing millions of messages. The program automatically records unhandled exceptions and provides API calls to record additional errors. All exceptions include stack traces and other details that aid in analysis."; 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 = ''; } }