var fDesc=new Array();
fDesc[0] = "Search results can be easily saved with a defensible audit trail for latter use and to illustrate that a reasonable effort was made to locate and collect relevant documents.
Features:
- State-of-the-art search engine
- Leave your data where it is
- Search millions of files in mere seconds
- User friendly
- Massively reduces files to process and review
- Significantly reduces potential litigation costs
- Search repositories across networks
- Easily handles large volumes of documents
- Email repository and zip file extraction plug-ins
- OCR capabilities plug-in for searching image only files
- Create simple or complex searches including proximity searches
- Documents from results can be saved with meta-data intact
- Provides a defensible audit trail and Chain-of-custody
- Relieves proportionality issues";
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 = '';
}
}