var fDesc=new Array();
fDesc[0] = "Fontmatrix is an end-user font manager initially designed for Linux, but now also available for Windows and Mac OS X.
Its highlights are:
- works with local and remote font storages;
features activation and deactivation of fonts based on tags;
- allows finding suitable fonts by constructing simple or complex queries;
- allows refining a fonts selection by comparing either glyphs in details or text lines;
- supports searching in PANOSE metadata and allows non-destructively editing it;
- has advanced OpenType support;
ships with sample texts in gazillion of languages and scripts to assist testing fonts with wide Unicode blocks coverage;
- features easy templates based creation of font books (PDF).";
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 = '';
}
}