var fDesc=new Array(); fDesc[0] = "Resolution Calculator is a simple calculator for display resolutions. With 11 parameters - diagonal length, horizontal and vertical aspect ratio, PPI, length, pixels and dot pitch, it calculates total PPI, area, pixels, dot pitch, etc. It has built-in display resolution standards such as VGA, SVGA, XGA and paper size standards such as A4, B4. Please tell me what it lacks of."; 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 = ''; } }