var fDesc=new Array();
fDesc[0] = "Tile3D HOME allows you to create a 3D model of a room; select the right tile from the catalog and lay it on the floor, walls or ceiling; place 3D objects (sanitary ware, furniture, accessories) and calculate the quantity of tile needed not only for the whole room, but also for a separate wall.
Main features:
- Creating 3D model of the room;
- Placing doors and windows;
- Ability to create two coating areas on one surface;
- Creating partitions and podiums;
- Ability to move tiles on a surface and to change tile laying angle;
- Placing 3D objects and blocks on the given coordinates;
- Creating columns and curved surfaces as a part of a block;
- Ability to save blocks in order to use them in other projects.";
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 = '';
}
}