var fDesc=new Array();
fDesc[0] = "It is a software component that adds a sharing feature to Revit application. The purpose of this tool is to allow users to share their designs in 3D PDF (Portable Document Format) technology; the format is natively supported and interactively visualized by the free version of Acrobat Reader.
Versions Supported: 3D PDF Exporter works with Revit 2013 (32-bit and 64-bit), 2014 (32-bit and 64-bit) and 2015, 2016, 2017, 2018 (64-bit).";
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 = '';
}
}