var fDesc=new Array();
fDesc[0] = "Atomic FE is a Front-End for Multi-emulators.
It’s been made mainly to be used with games of arcade MAME.
Furthermore, it would be possible to utilize Atomic FE with any other emulator as a result of small configuration efforts.
Eventually, Atomic FE can be used to launch any application, as well as simply as a menu control!
This front end is optimized for MAME and its derivatives (ADVMAME, FASTMAME, etc...).
The main objective of Atomic FE is to function within a real arcade cabinet, and to be driven using joysticks as well as the buttons.
In other words, it can work perfectly well with a keyboard or arcade controls.";
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 = '';
}
}