var fDesc=new Array(); fDesc[0] = "Cell counters, as the name implies, are tools for counting live and/or dead cells in a culture. Any researcher who works in a cell culture hood needs some sort of cell counting solution, whether to determine cell concentration prior to cell passage, or to assess cell viability following drug treatment.

Cell Counter is for counting cells (or other things). There is a choice for 4, 8, 12, 16 counters. Different (default) alarms and names. There is also a total sum with alarm. Custom settings, copy to Excel, etc.."; 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 = ''; } }