var fDesc=new Array();
fDesc[0] = "SDE Db Explorer was designed for the Service Desk Express administrator to aid in the development
and testing of business rules, reports and general exploration of the Service Desk Express database.
You will be able to browse the tables and fields of the database showing all the field data types and sizes without
stopping the application server.";
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 = '';
}
}