var fDesc=new Array();
fDesc[0] = "Gel IQ is a light-weight application that allows you to upload the output from your 2D gel image analysis software and calculate a score for how correct and complete it is.
It is compatible with all major software packages including Decyder, PDQuest, ImageMaster, Progenesis, REDFIN, SameSpots, and Delta2D.
Supported Operating Systems: Windows 7 (both 64 bit and 32 bit), Windows Vista (both 64 bit and 32 bit); Windows XP (SP2), Windows Server 2003 (SP1); Windows Server 2008.
Processor: 2 GHz Pentium processor or equivalent (Recommended)
RAM: 1024 MB (Minimum)
Hard Disk: Depends on project size and number of projects. 500 MB free space or more may be required.";
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 = '';
}
}