var fDesc=new Array();
fDesc[0] = "SoftPlan home design software offers practical tools that are simple to learn and easy to use.
With more than two decades of development. SoftPlan offers a unique and industry leading solution for residential and light commercial design. Maximum automation combines with a short learning curve to create unlimited home design possibilities.SoftPlan home design software allows you to build a model of the project before you build it on the site, and the "BIM model" provides complete construction documents, 3D renderings, and accurate material list, and cost estimate reports.";
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 = '';
}
}