var fDesc=new Array();
fDesc[0] = "With Type light you can design, edit and convert OpenType, TrueType (.ttf) and PostScript (.otf) fonts.
Main features:
- Convert between OpenType TrueType and OpenType PostScript fonts.
- Edit glyphs as TrueType or as standard PostScript curves.
- Create and edit fonts containing up to 65535 glyphs.
- Map glyphs to any of 65536 unicode characters.
- Input OpenType metrics, names and parameters.
- Refer to an easy to read, colour PDF manual.
- Obtain free support and technical assistance.";
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 = '';
}
}