var fDesc=new Array();
fDesc[0] = "The Bentley DGN Reader for Windows 7 makes architecture and engineering information models more accessible to all AECO professionals by providing the ability to view, pan, zoom, and rotate 2D and 3D DGNs and i-models from within Windows Explorer and any Windows 7 application, such as Microsoft Outlook, that uses the Windows preview capability.
It also helps users save time finding the right models and drawings by adding to Windows 7 the ability to view thumbnails of DGNs and i-models and to search for files based on their embedded text.";
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 = '';
}
}