var fDesc=new Array();
fDesc[0] = "The Maya Cg Plug-in allows artists to author and visualize content in Maya 4.5 and Maya 5.0 using advanced hardware rendering and the Cg high level language. The plug-in includes:
- Intuitive artist controls
- Integration with Maya's lights
- CgFX integration with Maya's Hypershade node-based shader editor";
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 = '';
}
}