var fDesc=new Array();
fDesc[0] = "Ekanta's custom UI gives more functionality whilst making the UI transparent. Unlike the other TAD UI, this one displays the full HC animation instead of a static image.
This mod is for TAD (The Asian Dynasities) expansion pack only.
Main features:
If you use maximized UI (in game options) you get a transparent UI version.
If you use minimized UI (in game options) you get a non-transparent UI version.
The look of unit stats might differ a tiny bit between transparent/non-transparent UI but not much.";
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 = '';
}
}