var fDesc=new Array();
fDesc[0] = "MultiMOD is an SDK-mod for Superpower 2, GolemLabs Geopolitical Simulator.
The game itself lets you play as any of the 193 nations in the world starting in 2001 and control their political, military and economic course. Download the application it from downloads page.";
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 = '';
}
}