var fDesc=new Array();
fDesc[0] = "ContrastMaster lets you perform effective contrast enhancement, creating dramatic contrast looks, photorealistic paintings and HDR-like effects. It can turn low-contrast photos into vivid and detailed images and transform ordinary photos into interesting and dynamic shots. The Lightroom version of ContrastMaster does not let you open any images. You need to select the images in Lightroom before running ContrastMaster.
The Standalone version supports various ways of opening images. There is an Open button at the bottom right of the window or an Open menu item displayed when you click on the arrow-down button at the top left corner of the preview. Both displays an file dialog for selecting image files.";
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 = '';
}
}