var fDesc=new Array(); fDesc[0] = "SnipDock is an open source program that allows you to snip a part of the screen and snap it like a dock to the edge of the screen. Whatever be the size of the image, the dock will automatically adjust its size. You can zoom in or zoom out of the image by scrolling your mouse on the image."; 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 = ''; } }