var fDesc=new Array();
fDesc[0] = "VenturiOne® allows researchers to take a fresh look at off-line flow cytometry data analysis. With the ability to analyse data produced from any cytometer, VenturiOne® has a simple user interface, allowing you to perform fast, simple everyday data analysis and explore the true potential of your data.
VenturiOne® is ideal for:
- Academic research
- Clinical research
- Core flow laboratories
- Pharmaceuticals
Designed for maximum performance and simplicity of use, in just a few simple clicks researchers can:
- Preview every combination of parameters instantaneously
- View a hierarchy of all plots giving an instant picture of every gated plot
- Perform DNA cell cycle analysis, automatic and manual compensation, gating and generate statistics
- View snapshot overlays for comparative analysis
- Analyse 400 data files at once in less than 10 seconds
- Simple, quick and selectable in-software report generation";
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 = '';
}
}