var fDesc=new Array();
fDesc[0] = "Trellian SpellCheck is an extremely efficient spell checking utility that allows you to thoroughly check documents from the outside - in.
No longer do you have to open complicated text editors just to make sure there are no spelling errors.
With SpellCheck, all you need to do is use the built in browsing facility to locate a document and you will be guided through to a professional error free document.";
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 = '';
}
}