var fDesc=new Array();
fDesc[0] = "EasyThumb is a small program which makes thumbnails and coverts images to different formats. It is capable of reading and writing into a wide variety of image formats, among them JPEG, GIF, TIFF, PNG, BMP, and more. It can also create an HTML output.
EasyThumb has a nice interface, and is user-friendly. All the same, a huge help file is included to give you every little detail about the application.
EasyThumb has minimal requirements, it will work almost on every machine where Microsoft Windows is installed.";
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 = '';
}
}