var fDesc=new Array();
fDesc[0] = "Used by more than 70% of the court reporting industry, RealLegal E-Transcript technology is the benchmark for electronic transcripts, and the standard delivery format for litigators nationwide.
E-Transcript files ensure page and line integrity, allow for custom formatting, and offer the security of a tamperproof, electronic signature. The free E-Transcript Viewer is all that's needed to view an E-Transcript. Unlike other formats, E-Transcript files are also compatible with West LiveNote, West Case Notebook and other popular litigation software.";
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 = '';
}
}