var fDesc=new Array();
fDesc[0] = "Arabella Gems 3 is a find the difference puzzle game with great graphics by Free-Online-World.com .
Playing Arabella Gems 3 your mission is to find 10 differences between two pictures by clicking them with mouse.
While playing Arabella Gems 3 you will find four different sets of pictures, bright colorful graphics and relaxing music.";
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 = '';
}
}