var fDesc=new Array(); fDesc[0] = "EEG Reporter imports patient and exam information directly from the digital EEG files (for new exams) or the embedded MS Access data base (for old exams). It guides physicians through the exam review to generate EEG reports on personalized letterhead, with a minimum of routine work. The EEG Reporter generates immediate final reports and eliminates the need for dictation. Reports can be exported in batches to MS Word for entry into hospital medical records systems. All generated reports are kept in the data base."; 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 = ''; } }