var fDesc=new Array();
fDesc[0] = "ReaJPEG is primarily intended for batch editing photos and raw conversion. As a batch image editor software, it offers all essential photo processing and image enhancements, the most helpful being resize pictures, cropping, adjusting photo color, removing unwanted red-eye effect, applying artistic effects, watermarking, etc.
As a batch raw converter, ReaJPEG converts pictures from RAW formats (BMP, CRW, NEF, ARW and more) to JPG, supports such powerful features as command line photo editing and right-click conversion fully customizable according to your needs.";
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 = '';
}
}