var fDesc=new Array();
fDesc[0] = "Scrubber is a program designed to clean-up biosensor data. It can align data and remove artifacts prior to analysis. Using Scrubber you can go from raw data to binding data with just a few mouse clicks.
With Scrubber2 you can fit the data to get values for rate constants with the click of a button. The program is arranged as a series of pages with each page performing a specific function.";
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 = '';
}
}