var fDesc=new Array();
fDesc[0] = "Xcalibur's wide range of functionality and ability to integrate third-party control provides the tools to perform a wide range of applications. Several application-specific software modules have been designed to work seemlessly with Xcalibur to meet the needs of a variety of users.
Main Features:
- Easy-to-use interface enables quick and efficient acquisition, data processing and results delivery
- Integrates instrument setup, acquisition, data processing and reporting
- Results can be quickly reviewed with the Qual, Quan and Library Browsers";
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 = '';
}
}