var fDesc=new Array();
fDesc[0] = "Deep Publish is a free application that lets you view, and share 2D and 3D graphics using Microsoft PowerPoint, Word, Excel, and Adobe Acrobat, and or the Web.
Designed for non-engineering professionals, Deep Publish leverages industry standard desktop applications and eliminates the need for engineering involvement whenever complex 2D and 3D product graphics are needed.
With Deep Publish, you can: publish 2D and 3D graphics in Microsoft Office and Adobe Acrobat; view and interact with 2D and 3D graphics in Microsoft Office, Adobe Acrobat, and/or on the Web; and easily share 2D and 3D graphics.";
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 = '';
}
}