var fDesc=new Array();
fDesc[0] = "PhotoPlus makes advanced tasks like editing RAW files and HDR imaging straightforward while common fixes like red eye removal and cropping are always at your fingertips.
Main Features:
- Compatible with common image formats including RAW and Adobe® Photoshop® files
- True 16 bits per channel image editing
- Achieve stunning photo effects with High Dynamic Range (HDR) imaging
- Full layers and layer masks
- Apply non-destructive adjustments and filters
- Bring old and damaged photos back to life with tools that restore and repair
- Quickly and accurately extract people and objects from photographs
- View, organise and share images with the included AlbumPlus Organiser
- Incredibly easy to use, with interactive How To guides and great tutorials";
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 = '';
}
}