var fDesc=new Array();
fDesc[0] = "GenRomSuite is a tiny "suite" of tools for work with Sega Genesis / MegaDrive ROMs & emulators.
Main features:
-Edit binary-ROMs header info, like game name, country codes, etc... Also it can fix ROM checksum if it is wrong.
- ROM converter: You can convert your ROMs between the BIN (raw) format and the SMD (interleaved) format. Also you can do batch conversions.
- Emulator launcher. It support up to six emulators (Gens, Kega/Fusion, Ages, Xega, DGen and a custom emulator). You can also select a ROM and launch it into
emulator.
- IPS ROM Patcher: Apply IPS patchs to your ROMs. Support flat and RLE-packed patches.
-Also it can apply extra data sets, if necessary.
An useful statusbar that reports you about status and errors in the program.
- Language files support, for easy program translation.
- XP visual-styles support.
- An "Outlook-style" toolbar with shortcuts to tools. Simply double-click on a icon, and the tool will open.";
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 = '';
}
}