var fDesc=new Array(); fDesc[0] = "This program is for people with word finding difficulty and problems recalling personal information. Users are asked to provide pieces of information by either typing the information or speaking it. The specific pieces of information can be completely customized. Information can be updated at anytime and made more difficult as the user pro- gresses.

Requirements:

- Windows XP, 2000, Vista, 7, 512 megabytes (MB) RAM. The microphone should be a high quality device with built-in noise filters."; 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 = ''; } }