var fDesc=new Array(); fDesc[0] = "Photo Black & Color allows you to make a partial desaturation on an image by selecting the colors to keep. The partial desaturation is when you preserve a colored subject and let the rest of the image grayscaled.
To get good results, better choose images with one main subject with colors different from the background colors, such as flowers, fruit or other."; 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 = ''; } }