var fDesc=new Array();
fDesc[0] = "Venture is a stock market simulation game. The object of Venture is to acquire the most money. This is accomplished by building and merging companies, and buying and trading stock.
Main features:
- Three levels of computer opponents.
- Cross platform network play with up to four players.
- Export game logs as text or HTML.";
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 = '';
}
}