var fDesc=new Array();
fDesc[0] = "For almost two hundred years now, the French Foreign Legion has attracted adventurers from all over the world.
One of them is Claude Boulet, a 26 year-old Parisian, brought up in harmony with tough street rules.
The Legion was where he found his place, and it led him straight to the hellish African savanna.
A revolution inspired by the African Revolutionary Group erupted in Ivory Coast. The FDSC government forces, and the European troops supporting them, were overwhelmed by a surprise attack. As a result the enemy possesses an impressive armory.";
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 = '';
}
}