var fDesc=new Array();
fDesc[0] = "Morph-O-Matic, the industry standard morphing extension for 3ds max, has been designed from the ground up as a tool to assist modelers, animators and technical directors in creating complex morph setups and animations. No matter how complex the model or how numerous the targets, Morph-O-Matic will provide you with instant results every time.
Made for animators by animators, achieve awesome animations quickly and easily with Morph-O-Matic using powerful animator-oriented features like the unique keyframing floating window.";
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 = '';
}
}