var fDesc=new Array();
fDesc[0] = "The aim of U2XMP Community Edition is to make it easier to install Unreal 2 XMP. The reasons for this are basically to make it easier for existing members of the community to reinstall a copy of the game without having to face the tedious process of patching, installing the new master server support, web update and installing several huge add-on packs just to get the 1 or 2 odd maps that are actually played. The second reason is to encourage new players who may have played Unreal 2 and want to try out XMP by making it easy for them to get up and running.";
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 = '';
}
}