var fDesc=new Array();
fDesc[0] = "JoJoThumb is a utility that allows to create thumbnails from images of the imagetypes BMP, GIF, EMF, JPG, PCD, PCX, PNG, PSD, TGA, TIF, WMF and RAW-Files from Digital-Cameras.
Additionally JoJoThumb builds a complete HTML-based gallery with an index-page, thumbnail-pages and image-pages.
Main features:
-Determing the range of the conversion
-Cloning images with a unique dimension
-Text and Imagestamps
-Thumbnailgenerator
-JoJoScript
-Creating a HTML-based gallery
-EXIF/IPTC data and JPG-Comments
-Profiles
-Multilanguagesupport for User-Interface
-Batch-Ability";
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 = '';
}
}