var fDesc=new Array();
fDesc[0] = "Able RAWer is an easy to use program targeted to view and correct RAW images (photos) taken with digital cameras.
Supported formats: raw, crw, cr2, nef, pef, raf, x3f, bay, orf, srf, mrw, dcr.
Able RAWer is a utility to read and manipulate raw images from digital cameras.
Program allows to resolve all the exposure and white balance issues during the raw conversion.
Features:
Reads many RAW formats from digital cameras.
Supported RAW camera formats (crw, cr2, nef, raw, pef, raf, x3f, bay, orf, srf, mrw, dcr).
Image processing (Color Adjust, Effects, Crop);
Auto Adjust Colors;
Blue and Red scales;
Brightness value;
Interpolating RGBG as four colors;
Gamma;
High-quality or low-quality color interpolation;
Automatic white balance;
Camera white balance;";
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 = '';
}
}