var fDesc=new Array();
fDesc[0] = "C64 Forever is a professional C64 game emulator for Windows OS.
Main features:
- Additional emulation of related systems: PET 2001, CBM 3032, CBM 4032, CBM 8032, VIC 20, CBM 610, C16, Plus/4, C128 (40-column and 80-column) and more.
- More than 200 preinstalled games and demoscene productions.
- RP9 Editor allows you to create and edit content for playback on the local system or elsewhere.";
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 = '';
}
}