var fDesc=new Array();
fDesc[0] = "BioAssay Enterprise provides flexible storage, retrieval and analysis of biological data. Designed for complex lead optimization experiments, the software supports the quick set-up of biological models.
For modeling complicated in vivo experiments, or supporting an ultra-HTS platform, BioAssay has become the leading choice for managing biological experimental data.
It is the only application of its kind to provide a best-of-breed solution for both ultra-high volume laboratories and lowerthroughput settings. BioAssay includes support for laboratory automation, calculation, and statistics, and also complicated low and medium throughput assays such as animal models and in vivo experiments.
BioAssay Enterprise is a scalable, flexible biological screening solution utilizing Oracle’s role based security and the Oracle Cartridge. When used as part of ChemOffice Enterprise, BioAssay is integrated with E-Notebook for experimental data, Inventory Enterprise for plate tracking and management, Registration Enterprise for the registration of new compounds and BioSAR Enterprise for customized reporting.";
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 = '';
}
}