var fDesc=new Array(); fDesc[0] = "The bleach correction macro for ImageJ corrects for bleaching or intensity fluctuations by normalizing the images of a stack to the same mean intensity.

This method only works well if the mean intensity is not altered substantially (e.g. if a bright structure moves out of the imaging field). A ROI can be defined to select a suitable region as reference."; 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 = ''; } }