var fDesc=new Array();
fDesc[0] = "Multi Theft Auto provides the best online Grand Theft Auto experience there is.
-Custom shaders: Enhance your visual experience with ENB-like scripts that are cooler than the other side of the pillow.
- Voice Chat: Keep your hands on the wheel and off the chatbox with all new Voice chat support! Servers with voice enabled will allow you to communicate with other players using the Z key.
- Increased player count: Push your RPG server to the max. The MTA server has an increased cap of 1024 players.";
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 = '';
}
}