var fDesc=new Array();
fDesc[0] = "Rhinoceros is a powerful program that allows you to create complex models. It provides enhanced commands such as direct sub‑object manipulation and thin‑wall shelling, it provides support for texture mapping, 3D rendering, post-rendering effects and it also allows you to analyze your 3‑D models.";
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 = '';
}
}