var fDesc=new Array();
fDesc[0] = "SQL Monitor is a web-based performance monitoring and alerting tool for SQL Server. Accessible from any computer or internet-enabled mobile device, SQL Monitor gives you the freedom to keep watch on your servers beyond the limits of your desktop.
Intuitive overviews present the critical information you need in a straightforward format, updated in real time. You are alerted to problems by email and the built-in Alert Inbox in the UI whenever issues arise, so you know about them first. You get a full account of the problem and crucial details to solve it, no matter how far you are from your desk.";
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 = '';
}
}