var fDesc=new Array(); fDesc[0] = "JPEG Collager is a JPEG (and BMP) viewer which shows each image in a window without any border. The best way to see how it works is to play with it a bit, but here is a summary of use.
You can open any number of images. Images can also be opened by dropping the file on the tool window. Each one is manipulated individually. On the tool window in the title bar you can see which image the mouse is currently over. The active window (the one which will be affected by operations) is indicated on the left of the status bar; the right of the status bar shows the dimensions of the image and the window. When you see the icon become a hand, left dragging moves the window and right dragging moves the image within the window (unless it is stretched to fill the window). The window can be sized by dragging the edges."; 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 = ''; } }