var fDesc=new Array();
fDesc[0] = "ImageMaster 2D Platinum offers a flexible interface for the comprehensive visualization, exploration, and analysis of 2-D gel data from both 2-D DIGE (2-D fluorescence difference gel electrophoresis) and non-DIGE technologies.
Well-established methods for all of 2-D experiments, including single stain and 2-D DIGE experiments.
Easy import and image viewer functionality.
Effective spot detection and matching solutions.";
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 = '';
}
}