var fDesc=new Array();
fDesc[0] = "Image Guider is a useful utility that allows you to efficiently browse and organize images on your computer.
Main features:
-Fast high quality thumbnail generation engine.
-Native support for such removable devices as digital cameras, scanners, and USB video cameras.
-Simple, yet attractive and tunable user interface.
-Tight integration with Web image Guru Suite
-Browse the folders with preview thumbnails of the images;
-Easily acquire images from digital photo and video cameras, and scanners;
-Read full image information;
-Drag & drop images between folders;
-Delete, cut and paste images;
-Preview multiple images in many formats: JPEG, GIF, PNG, TIFF and others;
-Customize different options for image preview.";
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 = '';
}
}