var fDesc=new Array();
fDesc[0] = "The TermWiki Toolbar is a free, powerful tool for quick term reference and translation. Installed in minutes, it is an invaluable tool for all of your terminology management and glossary development needs. The tool includes:
- Powerful 3Di Search functions for term reference
- Customizable Browsing including filters for language, industry, product category and company
- Term Addition quick links, for easy contribution
- Workbench Access links, to enable batch term translation
- Help & Support access";
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 = '';
}
}