var fDesc=new Array();
fDesc[0] = "The ARCHLine.XP® 2007 imports and exports the DWG data format - used commonly by architects, engineers, designers, and virtually all CAD-related software applications.
ARCHLine.XP® 2007 uses the latest DWGdirect 2.2 libraries, based on the industry standard OpenDWG, which is widely supported by commercial software vendors, and the engineering community.
ARCHLine.XP® 2007 utilizes the new ODA libraries to interpret the updated DWG 2007 file format. ARCHLine.XP® 2007 will read, display, and write DWG 2007 files.
New Modular Product Structure ARCHLine.XP® 2007 has been designed to enable the creation of a wide range of architectural design solutions for all types of market and application. The modular structure gives customers the ability to easily introduce additional functionality into their applications when required.";
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 = '';
}
}