var fDesc=new Array(); fDesc[0] = "Ancient Jewels 3 is an arcade game where the task is to destroy all stone tiles. Form the chain of three or more figures of the same color by clicking at one figure and drag to other adjacent figures of the same color and all of them will disappear. If there is a stone tile under the figure from the chain it will be destroyed."; 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 = ''; } }