var fDesc=new Array();
fDesc[0] = "GemStone is a revolutionary new paradigm for analysis of high-dimensional, flow cytometry data.
Based on patented Probability State Modeling technology, GemStone eliminates the problems that have faced flow cytometry analysis for decades, providing a solution that is science-based, data-driven, scalable, and reproducible.
GemStone is a very versatile application. It is exceptional for analyzing cell progressions, like B cell analysis and T cell activation, and understanding the diseases associated with them.";
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 = '';
}
}