var fDesc=new Array(); fDesc[0] = "Manga viewing program. Supports manga archives in either zip or rar formats. Tracks your manga library, remembering the last chapter and page read for each manga. You can also bookmark your favorite pages. Supports text only pages. Zoom in, zoom out, or fit to page. Navigating through your manga chapters and pages and moving around within a page can be done with keyboard shortcuts, the mouse, or via pop-up menus. All aspects of the program are explained in the built in help system."; 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 = ''; } }