var fDesc=new Array();
fDesc[0] = "Are you ready for this realistic 3D billiards simulator?
Are you sure about your skills? Are you ready to play against a human, your computer, or challenge a friend over the world thorough the network in 6 different games: 3 Ball, 8 Ball, 9 Ball, 14.1, One Pocket, and Pyramid? Play billiards in a garden, a bar, or a castle; and choose from retro, small, or in classic tables . A special Mp3 player lets you listen to music while playing billiards.
Features:
6 Billiard Games!
Mp3 Audio Player
Training Mode for Beginners";
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 = '';
}
}