var fDesc=new Array(); fDesc[0] = "SnipQuick is a program to capture snapshots with editing features. The program has 4 options - screenshot, screenshot logo, window, window logo. The Logo can be a callout graphic or any other image. In screenshot mode, a user can drag the area of screen to take screenshot. In window mode, the screenshot of a window can be taken. The logo mode lets the user drag the logo into the screenshot area or screen and the resulting image will have it."; 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 = ''; } }