var fDesc=new Array();
fDesc[0] = "A powerful image editing application to enhance, manage, and print your digital photos
Main Features:
- Provide advanced photo editing tools for digital photo editing
- Support RAW format and large image files importing and editing
- Extract an object easily from its background with Magic-Cut
- Offer Face Beautify function to make face look flawless
- Support editing 48-bit images from your scanner";
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 = '';
}
}