var fDesc=new Array(); fDesc[0] = "This program emulates a popular series of early microcomputers, the TRS-80 Model I, III, 4, and 4P. The CPU emulation is extremely accurate, supports all known instructions, and runs at exact TRS-80 speed. It is also extremely fast, being written in assembly language, and can exceed actual TRS-80 speed on any computer capable of running Windows. The floppy disk emulation is incredibly accurate and will even work great with self-booting or protected disks, such as Super Utility."; 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 = ''; } }