var fDesc=new Array();
fDesc[0] = "IDEA Architecture is a 2D & 3D Architectural package offering an unrivaled compatibility with AutoCAD. Powered by a sophisticated yet very easy to use BIM technology, IDEA Architecture is also reknown for its CAD features, speed and easy transition for AutoCAD or IntelliCAD users.
Main features:
- opens the latest DWG 2010 file format (without any import) and saves directly in DWG 2007: an unrivaled compatibility with any version of AutoCAD including the latest AutoCAD 2010 and 2011 versions.
- Layouts and plot like AutoCAD
- You may use object snap tracking to find logical points without drawing construction lines.
- Possibility to set OpenGL real-time rendering as by default rendering mode.";
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 = '';
}
}