var fDesc=new Array();
fDesc[0] = "RuMSX was one of the first MSX emulations for the 32bit Windows platform. The main-problem is that no one of the existing emulators is really complete. To finish such a project with success it is necessary, that this emulator is FreeWare.
RuMSX is a multilingual emulation of MSX, MSX 2, MSX 2 and MSX Turbo-R homecomputers.
The help files contain comprehensive documentation of MSX-Basic and MSX-BIOS as well as many original manuals. They also contain detailed help for RuMSX itself.";
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 = '';
}
}