var fDesc=new Array(); fDesc[0] = "Inbetween Land is a hidden object game with a mysterious theme. The story is about a girl, Mary, who goes missing and you set of on a journey in an attempt to find her. You begin searching for clues and come across a strange artifact that opens a portal to a flying island, the abandoned homeplace of an extraterrestrial civilization. As you look for Mary on the island, you'll uncover an exotic land with unearthly secrets."; 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 = ''; } }