var fDesc=new Array();
fDesc[0] = "The MS-DOS braille translator that keeps working for the volume transcriber and producer.
MegaDots is a mature DOS braille translator with powerful features for the volume transcriber and producer. Its straightforward, style-based system and automated features let you create great braille with only a few keystrokes. Yet it is sophisticated enough to please the fussiest braille producers -- you can control each step MegaDots follows to format, translate and produce braille documents.";
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 = '';
}
}