var fDesc=new Array();
fDesc[0] = "Eurolinescan is an automated evaluation of membrane-based test systems.
Features:
-For all EUROIMMUN blot systems: EUROLINE, EUROLINE-WB, Westernblot.
-For all areas: autoimmune diagnostics, infectious serology and allergy.
-EUROBlotCamera: digitization of strips while in the incubation tray.
-EUROBlotScanner: digitization of strips using flatbed scanner.
-Fully automated identification, quantization and assignment of bands.
-Option to modify results (changes are automatically documented).";
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 = '';
}
}