var fDesc=new Array();
fDesc[0] = "These fonts include a complete set of Vai consonants and vowels, along with punctuation, arabic numerals, and other useful symbols. There are no Roman characters (a-z) in these fonts.
Vai is spoken by approximately 105,000 people in Liberia and Sierra Leone, West Africa. The Vai script is a syllabary thought to be invented by Momolu Duwalu Bukele in approximately 1833. It is a unique indigenous writing system which the Vai people have used proudly for nearly two centuries.
These fonts are still custom (legacy) 8-bit fonts. They are not Unicode fonts.";
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 = '';
}
}