var fDesc=new Array();
fDesc[0] = "MBizGroup PhotoEditor 1.5 is a compact yet powerful photo application, it includes the following features:
The most compact full-featured image viewing and editing application, less than 2 MB;
Popular photo editing features, including: Rotate, Crop, Resize, Brightness, Contrast, etc.
Lots of Photo Special Effects (Image Filter) functions;
Can open mulitple images in one application; supports fit-to-window and full-screen;
Supports slide show when opening multiple images;
Supports most image formats, including: jpeg, gif, tiff, bmp, etc.
Easy resizing of images;
Template-based image printing functions, allowing images be printed in different sizes very easily;
Supports TWAIN, can load images from Digital Cameras or Scanners directly;
Captures images from Desktop window or application window;
Integrates with www.drivehq.com, can easily upload, share or pulish photos on the Internet.";
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 = '';
}
}