var fDesc=new Array();
fDesc[0] = "Quests and Legends is the place where you can play the best game on the market. It presents you a world with monsters and heroes and many other characters.
Main features:
- Over 250 new spells, talents and skills, including chartography, detect traps, melt lock (mages only), bash lock (warriors only), throwing dagger skills and much much more
-Unique ores and throwing daggers (models).
-Over 200 NPC's, most fully voiced.
-Over 30 enhanced/unique creatures (monsters)";
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 = '';
}
}