var fDesc=new Array();
fDesc[0] = "E-triloquist a PC-based communication aid for a speech impaired person. It serves as an electronic voice for those who can't speak on their own.
E-triloquist, the personal computer augmentative communication aid software formerly known as "SpeakEasy", developed as a family project.
The program has an input area on the screen for entering a text or audio phrase which is to be spoken or played. With the touch of the "Enter" key or a mouse click, the text is converted to speech and sent to a voice synthesizer which conveys the message in mellifluous tones. Audio phrases are played as recorded.";
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 = '';
}
}