var fDesc=new Array();
fDesc[0] = "Progenesis LC‑MS is a data analysis program that helps you to find and quantify the proteins showing interesting behaviour in your label-free samples. It can be used for both differential protein expression and protein characterisation applications.
Main Features:
- quantification of all peaks, not just those with MS/MS data
- the advantages of label-free analysis
- reliable quantification based on ion abundance
- support for all major hardware vendors";
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 = '';
}
}