var fDesc=new Array();
fDesc[0] = "FontSuit is a powerful font manager for Windows XP & Vista, which allows you easily and quickly to organize your fonts collection, install fonts only when you need them, saving valuable system resources, preview fonts and print fonts sample.
Main features:
- Support all popular fonts in Windows (TrueType, OpenType, Adobe Type 1, etc)
- Create font sets by drag-and-drop, to organize your fonts by job, font type, or any other way as you like.
- Very easily activate / deactivate font, just by double-click the font name
- Icons show fonts status
- Preview fonts even if not activated";
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 = '';
}
}