var fDesc=new Array();
fDesc[0] = "Whether you are a novice or seasoned navigator, the game will satisfy your appetite for the open sea. A magnificent simulation with regattas intensely contested in solo or multiplayer mode, outstanding graphics and an ultra-realistic sea modelled and animated to perfection.
- The ultimate regatta simulator - The benchmark for all sailing games.
- 4 game modes allow beginners and proven navigators to enjoy the game to its fullest.
- Navigate 14 legendary water courses including Valencia, Marseille, Trapani and Malmö - all official venues of the America's Cup. Discover the prime locations for competitive sailing such as San Francisco, Sydney, Porto Cervo, Auckland, Vancouver, Wight, Quiberon, Rio and even Qingdao.
- Create your own water courses and regattas in solo or multiplayer mode with the game editors.
- Play online with players from around the world (integrated chat and player ranking systems, avatars, competitions). Requires an Internet connection.";
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 = '';
}
}