var fDesc=new Array();
fDesc[0] = "Choose one of ten different characters and start dueling your opponents in a battle of skill, tactics and wits.
Summon mighty creatures to your aid and waste other mages with dreadful curses.
-10 characters and over 50 spells to choose from!
- unique skills for each of the playable characters!
- an epic soundtrack by Rob Westwood!
- gather experience and develop your mage the way you like!
- collect Insignias for your most outstanding achievements!";
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 = '';
}
}