var fDesc=new Array();
fDesc[0] = "A powerful conceptual 3D modelling and drawing package for houses and similar structures. Hyne Ezydraw v2 is used by the designer to generate a full structural floor layout and takeoff of Hyne Timber floor framing elements.
Hyne Ezydraw is an adaptation of Cadsoft’s® popular Envisioneer® 3D drawing program. In addition to specification of the full range of Hyne structural products, there is an extensive array of connection and tiedown details, together with common floor, wall and roof construction systems.";
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 = '';
}
}