var fDesc=new Array();
fDesc[0] = "This game is the result of this work. It is a basic solitaire Mahjongg game with no special frills. Just one basic tile set and one classic tile layout. This is a Microsoft Windows based game. Here are the features that are included.
- Easy installation with the installer.
- Can give hints to legal moves.
- You can take moves back.
- Keeps track of best times.
- Displays tiles left.
- Displays number of moves left.
- Has some cool sound effects like the clicking of tiles and a chimes effect when a game starts.
- Has Japanese garden background scenery.";
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 = '';
}
}