var fDesc=new Array(); fDesc[0] = "DAOC-Charplan is a character planner for Dark Age of Camelot. The character development behaves nearly the same as on Catacombs CB. This program allows you to select a realm, a class, and possibly a race. Also you can place the desired level and decide if you want the realm rank.
On the 3 mainpages you can setup basic-stats (str,dex, etc.), skill (Specialization within the different lines), and realm abilities."; 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 = ''; } }