var fDesc=new Array();
fDesc[0] = "AKVIS Refocus is a focus adjustment program that enhances the clarity of photos, increases their sharpness, and applies artistic blur and bokeh effects to images. This tool works in five modes: Refocus, Tilt-Shift, Iris Blur, Motion Blur, and Radial Blur. Refocus mode makes blurred photos sharp and clear. You can re-focus the entire image or only certain details. Tilt-Shift mode allows leaving a sharp strip in the image, adding gradual blur at the edges, with smooth transitions between the regions and with bokeh effects. Iris Blur mode (Deluxe/Business) creates shallow depth-of-field effect, blurring the background while keeping the subject in focus.
Refocus can be run in standalone mode or as a plugin on Photoshop, Photoshop Elements, PaintShop Pro, and other editors.";
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 = '';
}
}