var fDesc=new Array();
fDesc[0] = "PlanEasy2D software can be used to draw floor plans, building exit plans and other plans easily and quickly. The software includes a collection of furniture and textures. The drawing units and scale can be configured for each floor and supports zoom,pan operations.
Main features:
-Create realistic architectural plans and specify dimensions in ft/inches or meters.
-Create multiple floors and draw individual plan in each floor.
-The dimensions of walls and area of room are shown automatically as you draw.
-Edit the name of each room or floor.
-Simply click and add furnitures. Easy to move, resize or rotate the furniture.
-Change the background texture or color of the room with a simple click.
-Add text ,format it or even move, resize and rotate the text.
-Cut, copy and paste the furniture or text.
-Export the plan as png, jpg, pdf or one of the other common image format.
-Save or print the plan.";
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 = '';
}
}