var fDesc=new Array();
fDesc[0] = "Uncharted Waters Online is a MMROPG set within
several timelines during the Age of Exploration as a romantic
and historic fictional account of the era.
Players will live and play real world of 15th century to make
their own history. Players may choose from among 6 nation-
alities: England, Dutch Republic, Ancien Régime in France,
Spanish Empire, Kingdom of Portugal, and Republic of
Venice.
As well the player may choose from several occupations
after choosing a basic class: adventurer, merchant, and
soldier. Players are able to trade, explore, battle and join in
live events such as "Great Sea Fights".";
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 = '';
}
}