var fDesc=new Array();
fDesc[0] = "Seveno DataSight Desktop is ideal for smaller organizations or individuals who desire a robust Environmental Data Management Solution without the need for IT support, database administration or broader systems integration.
Main features:
-Data import from probes, sensors, data loggers, etc
-Manual data entry forms
-A 'local' DBISAM database - no other database configuration required
-Easy-to-use database merge, export and move functions
-Multi-user access across a network
-Quality Control and data validation
-Advanced graphical visualization & analysis
-Gauging calculations
-Report design & templates
-Task scheduling for import, conversions and 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 = '';
}
}