var fDesc=new Array();
fDesc[0] = "SQL Block Monitor, monitorises all long running SQL statements, blocked processes, deadlocks, and contention issues.
SQL Block Monitor is a blocking and deadlocks monitor tool for Microsoft SQL Server.
Product empowers users with a historical blocked events of every unique individual piece of SQL involved in blocking.
Enables you to know exactly what SQL is causing the blocked process phenomena.";
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 = '';
}
}