var fDesc=new Array(); fDesc[0] = "The first version of TibEd was released several months after the release of Command & Conquer: Tiberian Sun. Only basic editing was supported in that version, and current versions of TibEd offer much more. But the essence of TibEd remains the same: quickly editing units through an interface, and not hiding any options (like some other editors do). This makes TibEd the choice for both beginner and pro mod makers."; 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 = ''; } }