var fDesc=new Array();
fDesc[0] = "This is an emulator for NES (Nintendo Entertainment System). NES is actually a very old gaming console. But there are some old games like Super Mario that we all like to play again and again. The ROMs (or the game files) of many games are available in the Internet.
This is a small application and works on any PC.";
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 = '';
}
}