var fDesc=new Array();
fDesc[0] = "Braille2000 is a bold new tool for producing braille. Braille2000 is fully Internet-aware, making it as simple as a mouse click to send a braille document to a braille production center, to a school, to a blind student, or to a fellow transcriber.
Braille2000 is fully compatible with ED-IT PC and is able to read and write .ABT kinds of files. But Braille2000 with its New Millennium technology is XML aware: you can read and write braille XML files as well as translate XML print text into braille.";
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 = '';
}
}