var fDesc=new Array();
fDesc[0] = "Automatically calculate seam layout and waste optimization.
Features:
- Lay floor rooms with carpet, tile, vinyl, wood and laminate
- Estimate material qty and labor usages
- Print seam cut diagram for installation
- Pattern carpet match
- Print quotation, work order, purchase order, invoice
Lay multiple floors
- Tile pattern layout
- Self-coving (flash coving)
- Export to PDF, Excel, QuickBooks
- 3D rendering and view";
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 = '';
}
}