var fDesc=new Array();
fDesc[0] = "Litle Fight 2 is a popular freeware PC fighting game for Windows and is the sequel to the game Little Fighter (LF1). Little Fighter 2 was created by Marti Wong and Starsky Wong in 1999, and released in a long series of updates.
For fast play in a Street Fighter-style environment, Little Fighter seems to have punched and kicked its way to the top. Fitting in with its retro feel, you play a small character with a big head-reminiscent of the Japanese "chibi" designs and fight against the computer or a friend, one-on-one or in a melee.
The control keys are simple and customizable to your preferences, but it's not a hard game to learn. You can move up, down, left and right; you can attack, defend and jump";
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 = '';
}
}