var fDesc=new Array();
fDesc[0] = "International Test Cricket is a very accurate statistical based Cricket Test Match computer game.
Main features:
- Statistical based model for Test Matches.
- Complete Player averages and records calculated.
- Play against intelligent CPU opponent or a human opponent.
- Select teams from a Squad of 20 Players.
- Play up to 6 Tests in a Series.
- Select Team/Batting/Bowling aggression.
- Select Batting/Bowling order.
- Pitch/Ball/Bounce/Weather/Outfield conditions.
- Form ratings for Batting/Bowling/Fielding.
- Output to printer, file, HTML source.
- Built in email option.
- League option with 2 Squads.";
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 = '';
}
}