var fDesc=new Array();
fDesc[0] = "Navigram Planner is the professional and easy to use solution for online 3d interior planning, design and configuration.
Navigram Planner lets you create a 3d design in minutes rather then hours. Share designs with others over the web. Use thousands of 3d objects from leading manufacturers and designers available in your designs.
Main features:
-Stylish new interface
-Stunning lighting options
-Hundreds of new objects and materials
-New floorplan designer
-Collada import (Sketchup)
-Online saving & sharing";
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 = '';
}
}