var fDesc=new Array();
fDesc[0] = "Panorama Corrector provides more features and controls to make your panoramic images look perfect and natural. The newly added features include support for multi-gigabyte images, better control over angled view images and improved user interface.
Main features:
- Correct panorama distortion, perspective shift, curved horizon, lens distortion, skewing, rotation.
- Correct complex asymmetrical and irregular distortions of panoramic images.
- Recover real shapes and sizes of objects, restore the natural look of images.
- Correct panoramic and conventional (not panoramic), scanned and digital images.
- Compatible with Adobe Photoshop CS6, Photoshop CS6 64-bit, Photoshop Elements 10 and other host applications.";
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 = '';
}
}