var fDesc=new Array(); fDesc[0] = "EPS File Viewer is a simple and fast tool designed to open and view EPS files. It supports Zoom-in and Zoom-out feature, where users can zoom in to get a close-up view or zoom out to see more details at a reduced size. In addition, this program supports "Save as JPG" function, this feature can convert EPS format file to JPG image, which means that users can use this tool as an EPS converter."; 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 = ''; } }