var fDesc=new Array();
fDesc[0] = "PR BW Studio is a plug-in for Power Retouche Photoshop that converts colors to black & white with the light-sensitivity of professional films.
The plug-in has four groups of filter-controls:
Lens-filters = Colored lens filters, like yellow, orange, etc.
Film = Film spectral sensitivity w. preset films.
Print = Multigrade, exposure, contrast, etc.
Zones = Three selectable and adjustable zones
The Black & White Studio plug-in works with these image modes: 8 & 16 bit / channel: RGB, Grayscale, Duotone, CMYK";
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 = '';
}
}