var fDesc=new Array();
fDesc[0] = "ShiVa Editor is part of the ShiVa3D solution designed to create 3D games and application in a fraction of the usual time. The WYSIWYG editing software is the glue between artists and developers providing a fast cross-platform production pipeline.
ShiVa is compatible with 3ds Max, Maya, XSI, Lightwave and Cinema4D, Blender, Modo, Sketchup, Truespace, Houdini, Revit, Inventor and more.";
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 = '';
}
}