var fDesc=new Array();
fDesc[0] = "Crown and Cutlass is a 3D pirate action/adventure game in the spirit of the old Pirates! game. It is simultaneously being developed in Linux and Windows, with a strong emphasis on cross-platform compatibility. The project is still early on in development, although it is just beginning to look like an actual game.
Crown and Cutlass is written in C++, using OpenGL and SDL in order to allow cross-platform compatibility.";
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 = '';
}
}