var fDesc=new Array();
fDesc[0] = "Bluebeam Revu is a PDF creation, editing, markup, and collaboration tool for Architecture, Engineering, and Construction (AEC) workflows. It lets you convert Microsoft Office documents and CAD drawings into high-quality 2D or 3D PDFs or transform scanned images into text-searchable documents. This program can track all markup, collaboration activity, and file revisions automatically and generate a final summary report.
CAD Edition is suitable for architects, engineers, and CAD users. It includes all features in Revu Standard, plus additional plugins for 2D & 3D PDFs, batch creation feature, and Bluebeam Studio tool.";
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 = '';
}
}