var fDesc=new Array();
fDesc[0] = "MCModKit allows you to install Minecraft mods, maps and texture packs.
Main features:
- Each mod is featured on it's own page with an overview, screenshots & videos, news, feature requests, support requests, wiki and more.
- MCModKit will safely download the mods you select directly to your computer with just one click.";
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 = '';
}
}