var fDesc=new Array();
fDesc[0] = "Ultima Online: Stygian Abyss is an entertaiment game with beautifull graphics.
Ever since they played a central role in Ultima VI, Gargoyles have been considered a unique and compelling part of Ultima lore. Presented as community-minded and strongly principled, the Gargoyle race is powerful in both magic and combat, and is renowned for their superior craftsmanship, particularly with unusual materials.
In Ultima Online, the Gargoyles' traditional lore will expand the player experience with new skills and talents including combat proficiency in throwing weapons, magical knowledge of the school of Mysticism, and the unsurpassed skill of Artificers that have mastered the art of Imbuing and unraveling magical items.
Gargoyles will be at the core of the Ultima Online: Stygian Abyss expansion and will allow the players to see the other side of Sosaria.";
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 = '';
}
}