var fDesc=new Array();
fDesc[0] = "Smart Photo Tools is a set of photo processing utilities. Users can prepare images for printing, web publishing or use on a PDA/smartphone, place text or logo, gather EXIF-collected photo statistics, search images using logical expressions and more.
More program features:
- Prepare images to print, or for the web or mobile device
- Different resize modes (crop, resize), batch processing
- Image adjustment (set up rotation, brightness, contrast, grayscale, etc.)
- Place a logo on the photos
- Burning results on CD/DVD
- Image search using logical expressions (for example, find photos taken in summer).
- Gather EXIF-based image statistics";
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 = '';
}
}