var fDesc=new Array();
fDesc[0] = "Create the perfect outdoor living experience for you and your family with beautiful landscaping with gardens, decks, pathways and sheds. Select from over 7,500 plants, flowers, shrubs and trees to create the look you want. Then watch them grow by changing their age, or see what they'll look like through the seasons.
TurboFLOORPLAN Landscape & Deck is compatible with drawings created from 3D Home Architect versions 5-8.
Perfect for:
Architects
Hobbyists
Illustrators
Engineers
Contractors
Students
Builders
Educators";
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 = '';
}
}