var fDesc=new Array();
fDesc[0] = "Esquimo is a powerful program designed for the creation of 3D animations. The rendering engine of the program is based on Flash Stage 3D and AGAL - GPU acceleration. It comes with 12 built-in customizable geometry objects, it supports importing geometry such as 3DS, LWO, STL, Collada and X (DirectX).";
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 = '';
}
}