var fDesc=new Array(); fDesc[0] = "This is a modding tool for use with Rise of Nations that edits scripts in an intuitive interface. Scripts created by this program can then be used in Quick Battles and Multiplayer games.

Main features:
- Researching of any unit, building, or technology at game start.
- Editing of unit and building stats like health, attack, and speed.
- Changing various game options like plunder and attrition."; 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 = ''; } }