var fDesc=new Array();
fDesc[0] = "-A user interface specifically designed to capture the spirit of pen & paper roleplaying.
-The Gamemaster can hand out sheets, maps, and notes for any or all players to interact with.
-Role playing is easy with dedicated chat features.
-Access all traditional paraphernalia available at the gaming table.
-These include dice, drawings, character sheets, portraits, tokens, and rulebook reference material.
-The complete Player's Handbook for Castles & Crusades converted to a library module, including all 13 archetypal character classes and seven races from which to create your characters.
-Also includes all spells, equipment, combat rules -all essential information needed to play Castles & Crusades online";
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 = '';
}
}