var fDesc=new Array();
fDesc[0] = "FontMassive is a font manager that allows previewing typefaces in a single list.
Features:
- Works with the following formats: TrueType (.ttf), OpenType (.otf), PostScript Type1 (.pfm .pfb).
- Very rapid filling of the list (work with the list is already possible, while it continues to fill).
- Many sorting options (for example, by width of text - helps to visually find similar fonts).
- Copy typeface as curves in Adobe Illustrator format.
- View glyphs at curves.
- History of opened folders.";
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 = '';
}
}