var fDesc=new Array();
fDesc[0] = "Using GRAPHISOFT Virtual Building Explorer and ArchiCAD architects and designers can explore their project designs with greater clarity than ever before.
Real-time 3D navigation in an architectural design – enhanced with gravity, layer control, fly-mode, egress recognition and pre-saved walkthroughs for the ultimate design exploration.
Element information – surface finishes, volumes, sizes and quantities – can also be displayed with a click of the mouse. Exact measurements can be taken during the real-time walkthrough to help design decisions and forecast cost related design issues.";
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 = '';
}
}