var fDesc=new Array();
fDesc[0] = "This is a GUI Database query tool. It allows a user to request specific information with just a few clicks. It has drill-down and print capabilities and requires no end-user knowledge of the underlying sql or database structure.
This program allows an end-user to perform complex database queries with just a few mouse clicks. The end-user does not need to know the structure of the data, or any sql; This is handled when the administrator defines the criteria that the users utilize in running their queries; using the criteria editor . The user can drill-down through the data, and print it out in report format.";
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 = '';
}
}