var fDesc=new Array();
fDesc[0] = "B/W Styler is a tool for performing impressive black and white conversions, creating traditional b&w effects and visually styling b&w photos. B/W Styler is available as a Photoshop-compatible plugin for Windows and MacOS X as well as a standalone application and Lightroom external editor for Windows.";
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 = '';
}
}