var fDesc=new Array();
fDesc[0] = "Sample View is a Windows®-based, 32-bit desktop application that provides remote communication to any sampler with an SD900 controller, using an RS232 serial connection.
The application is used to:
- Configure and program the sampler
- Download data and diagnostic information
- Update the device firmware";
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 = '';
}
}