var fDesc=new Array();
fDesc[0] = "Firebird Scanner is a tool to solve all types of performance problems with Firebird. It features:
- LogAnalyzer - tool for detailed analysis of SQL queries, plans, transactions and connections, it supports all versions of Firebird and InterBase.
- FBScanner Viewer - real-time viewer, it shows connections, queries and transactions which go through FBScanner Service.
- Support of all versions of Firebird (1.0 - 2.5) and InterBase (4.0-XE3).";
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 = '';
}
}