var fDesc=new Array();
fDesc[0] = "Retriever is a quick and handy image viewer for Windows95 / 98 / NT4.0, with an industry standard no fuss user interface. But you can do much more with Retriever:
1. Create thumbnails fast & easily.
2. Create impressive contact sheets from thumbnails.
3. Save contact sheets as index images, or print them to get an image catalog.
4. Create a website with thumbnails automatically.
5. "Dupe Detective" finds dupes and similar images.
6. Manage your images in a unique database.
7. View images in a slide show view.
8. Create image mosaics.
9. Powerful image processing.";
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 = '';
}
}