var fDesc=new Array();
fDesc[0] = "Getting into the Multiverse Network is quick and easy—and free! For a sneak peak of the prototype games and worlds currently under construction on Multiverse network, you can download and install the Multiverse World Browser. Similar to a web browser, the Multiverse World Browser lets you visit any game or world on our network with only a couple mouse clicks. There is no need to register separately for each individual world.
System requirements:
- Operating System: Windows XP or Vista
- Processor: Pentium 4 with 1GHz (2GHz recommended)
- RAM: 512 MB (1 GB recommended)
- Video Card: DirectX 9 compatible with 128MB memory (256MB recommended)
Sound Card: DirectSound compatible audio hardware";
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 = '';
}
}