var fDesc=new Array();
fDesc[0] = "The Sorbfil TLC Videodensitometer is intended for quantitative evaluation in Thin-Layer Chromatography (TLC).
The Videodensitometer evaluates spot areas in tracks on a TLC plate image with construction of a chromatogram (analog curve) on the deviation of track Intensity from background Intensity and the subsequent quantitative evaluation of the chromatogram.";
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 = '';
}
}