var fDesc=new Array(); fDesc[0] = "Sujiva is an adventure game about a world of steampunk, with steam engines, fantasy creatures, and, of course, magic. The main character is a girl named Hoshi, a member of the Order of Astral Hunters sent to the southern region of a mysterious country, Sujiva, in search of the legendary Mighty Sujivsk. According to the legend, Mighty Sujivsk can help the order to establish its authority throughout the astral plane."; 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 = ''; } }