var fDesc=new Array(); fDesc[0] = "Forensic Explorer is a tool that allows users to analyze electronic evidence. Primary users of this software are law enforcement, corporate investigations agencies and law firms. The program combines a flexible graphic user interface (GUI) with advanced sorting, filtering, keyword searching, previewing and scripting technology. It enables investigators to: manage the analysis of large volumes of information from multiple sources in a case file structure, access and examine all available data, produce detailed reports, and more."; 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 = ''; } }