var fDesc=new Array();
fDesc[0] = "Requirements:
The 32-bit edition of the Plug-In is compatible with Photoshop CS2, CS3, CS4 and CS5. Though it also works with Photoshop CS, Photoshop 7.0 and Photoshop Elements 4.0 or higher, it is limited to tone mapping a single image in 8 or 16 bits/channel mode. This is because only Photoshop CS2 or higher offer HDR merging and support images in 32 bits/channel mode.
The 64-bit edition of the Plug-In can only be installed on a 64-bit OS and requires the 64-bit edition of Photoshop CS4 or CS5.";
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 = '';
}
}