var fDesc=new Array();
fDesc[0] = "The SIL Encore Font System, is a library of over 1600 phonetic characters and linguistic symbols that can be used to create customized, scalable TrueType fonts for Windows and Macintosh systems. The Encore library has a complete Roman based glyph set for linguistic applications, including:
- The complete International Phonetic Alphabet
- All SIL/Americanist phonetic symbols
- Other phonetic symbols used by linguists
- A full set of simple and complex tone letters
- Orthographic symbols from around the world
- Expert glyphs such as true small caps, ligatures, fixed spaces, and superiors
- Standard character sets for both Macintosh and Windows systems
- Extended Cyrillic character set";
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 = '';
}
}