var fDesc=new Array();
fDesc[0] = "Fast and easy photo editing
- Enhance images by correcting brightness, saturation and colors
- Compose image artwork in an object based photo editor
- Add text, shapes, gradients, glows or shadows
- Optimize images for faster loading
- Rotate, downsample, crop images and remove background
- Apply optical effects with built-in filters
- Supports PNG, PSD, BMP, TIFF, GIF, JPEG and WMF";
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 = '';
}
}