var fDesc=new Array();
fDesc[0] = "Build your world in 3D
Use the Earth as a starting point to bring your ideas to virtual life. Go anywhere in the world and with a few clicks design a house or replicate your favorite building. When you're finished, share your creations online. No matter what your 3D design background may be, 3DVIA Shape for Maps makes designing realistic, 3D models fun, easy and free.";
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 = '';
}
}