var fDesc=new Array();
fDesc[0] = "Translate your Autocad 2D and 3D files directly into interactive VRML-models with A²WORLD and publish them on your website or share them with your partners.
A²WORLD is easy to install and translates 3D models fast and efficiently.
A²World supports Autocad 2000/i, Autocad 2002, Autocad 2004, ADT 2004 and ADT 2005.";
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 = '';
}
}