var fDesc=new Array();
fDesc[0] = "Image Lab Software is an image acquisition and analysis program that allows you to analyze gel or blot features, capture optimized image data and generate a comprehensive report in just a few seconds. It runs on the following Bio-Rad imaging systems:
- Gel Doc EZ imager and Gel Doc XR
- ChemiDoc MP and ChemiDoc XRS
- GS-900 calibrated densitometer";
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 = '';
}
}