var fDesc=new Array();
fDesc[0] = "Clarity is advanced Chromatography Data Station (CDS) with optional software modules for data acquisition, processing and instrument control. Its wide range of data acquisition interfaces (A/D converters, LAN, USB, RS232) allows connection to any GC or LC chromatograph.
Main Features:
- Preview all Clarity functions.
- Experience the look and feel of working with Clarity.
- Data acquisition simulated from a data file.
- Demo data for data processing.
- All controlled instruments available in demo mode.";
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 = '';
}
}