var fDesc=new Array();
fDesc[0] = "ReadySuite is litigation support and e-discovery software that offers quality control over discovery output, load file conversion, manipulation, etc.
Main features:
- Load file formats for importing and exporting include Concordance, EDRM XML, IPRO, Opticon, Ringtail, Summation, Trial Director, and custom metadata and delimited text formats.
- Import documents from industry standard load files and metadata files.
- Ensure all referenced files in load files can be found, including image, text, and native files.
- Quick document summary dialog with breakdown of all resources.";
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 = '';
}
}