var fDesc=new Array(); fDesc[0] = "CampGen is the most advanced campaign editor for Wesnoth to date. Always wanted to create your own Wesnoth campaigns, but the scripting format just seemed too complicated to learn, or too tedious to use? Then CampGen will be for you.

Note: Due to changes in Wesnoth's directory structure and WML features, only the SVN version of CampGen does currently work. Anyone volunteering to make a 0.28 release from the SVN version is welcome to do so! (You first need to get the SVN version working for that, then try to make a redistributable package for your platform..)"; 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 = ''; } }