var fDesc=new Array();
fDesc[0] = "The Civ3MMToolkit includes the following utilities: Civ3FlcEdit, Civ3MM and ImageConvert with all necessary DLLs files.
Civ3FlcEdit - the powerful animation viewer & editor, assigned to work with Civilization III FLC animation files.
Civ3MM - Civilization III Mode Maker, multifunctional utility, which allows creating and/or modifying scenarios and modes
ImgConvert – small but powerful utility assigned to help with making the Civilopedia icons and other graphics.";
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 = '';
}
}