var fDesc=new Array();
fDesc[0] = "Sven Co-op is a co-operative based game for Valve Software's Half-Life. In this mod players must work together against computer controlled enemies and solve puzzles as a team.
Sven Co-op is similar to Half-Life with similar weapons, monsters, and characters, the difficulty has been increased to suit team play.
Sven Co-op's levels are set as missions and are generally separate from each other. Many missions span several maps and some are collected together in a series. The aim of most levels is to reach the end or to achieve an objective -- obtaining a high score is not essential to beat a level, its just part of the fun.";
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 = '';
}
}