var fDesc=new Array();
fDesc[0] = "Xadrian is a factory complex calculator for the games X³: Terran Conflict and X³: Albion Prelude. It provides features such as:
- Optional automatic base complex calculation.
- Load, save and print your complexes.
- Sun power is configurable per complex.
- Complex can be connected to a sector for automatic sun power configuration and calculation of next ship yards where the factories can be bought.
- Easy creation of mines.";
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 = '';
}
}