var fDesc=new Array();
fDesc[0] = "Buccaneer is a single and multiplayer game where players strive to become the most infamous pirate captain of all time and etch their name in The Hall of Infamy.
Set against a backdrop of the sunny Caribbean, players will control a variety of classic tall ships, bristling with cannons, as they plunder their way through a 50 mission campaign and go head to head against other cut-throats online.
Employing a simple and intuitive control system, players will be able to jump straight into the action and begin their career in piracy.
With a wide variety of non-linear single player missions and a choice of more than a dozen fully customisable ships, Buccaneer will have budding pirate captains clamouring for more!";
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 = '';
}
}