var fDesc=new Array(); fDesc[0] = "TA Conflict Crusher is a program designed to FIX conflicts between 3rd party units in the game Total Annihilation by Cavedog. Why is this good? Well in Total Annihilation, each unit and weapon is allocated a unique ID number that identifies it to the game. Also it has a position on a build menu that defines which unit builds it and on which menu and button. This is all fine, but say you download a unit from unit group A and a unit from group B. Both these new units could have the same ID (the unit ID being the same isn't too dangerous though), or worse they could have new weapons, which allocate the same unique ID to each of them. If two weapons have the same ID, TA will ignore one of them and possibly crash during startup. This results in one of your new units being unable to fire or whatever."; 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 = ''; } }