var fDesc=new Array(); fDesc[0] = "Command and control your Window's computer through your voice. Operate your computer using a minimum of keystrokes or mouse clicks. If you want to move the cursor down one line, simply say: Down One. Want to check your emails? Simply say: Open Email. Add commands to open any Window's document or program."; 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 = ''; } }