var fDesc=new Array();
fDesc[0] = "Volocity 3D image analysis application is the only solution that provides all the tools you need to visualize, analyze and validate 3D fluorescence images from a wide range of confocal microscopy, widefield and high content screening systems and is fully integrated for a seamless user experience.
Main features:
- Read a range of fluorescence z-stack images from widefield and confocal microscopes, and high content screening systems
- Drag and drop your image files into the software to interactively explore in 3D
- Rotate, zoom and fly through rendered objects in real time
- Choose from rendering options including solid surfaces, varying opacity and shadows
- See how the three dimensions intersect at any point
- Explore structures and processes from any angle in fixed and dynamic experiments
- Prepare stunning images for publication
- Produce compelling movies for presentation";
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 = '';
}
}