var fDesc=new Array();
fDesc[0] = "Air Diver is a simple but amazing game, completely free.
You have been selected for a mission of the utmost secrecy. The details of this mission have been purposely withheld until now to prevent any leaks to the enemy.
An unknown terrorist organization led by a fanatical leader operating out of the middle east, has created a military force so powerful.
Your mission is to seek and destroy the enemy terrorists. They are well armed, and thought to have the backing of several unfriendly governments.";
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 = '';
}
}