var fDesc=new Array();
fDesc[0] = "The Last Defense is a shooting game. A sophisticated turret defense game. Upgrade your defense turret with better base armor, cockpit and weapons. Detailed upgrading of weapon sub-systems and the incredible control of bullettime (slow motion) and turret shields.
You objective is to survive 25 rounds of several incoming enemies including 5 heavy boss types. You are the last defense. Use the mouse cursor to aim and shoot. Press and hold [S] to slow down time. Press and hold [D] to activate shielding. F1-F3 quality control.";
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 = '';
}
}