var fDesc=new Array();
fDesc[0] = "Guard Web Pro is a site monitoring and alerting tool. Using Guard Web Pro you can realize many different site-monitoring tasks in an automated way. With Guard Web you can automate the following tasks:
1-Detect and alert an inaccessible HTTP link.
2-Detect and alert an accessible HTTP link.
3-Detect and alert any change in a Site, and send updates through phone or e-mail.
4-Detect and alert network latency, using absolute connection delay measures or relative adaptive measures.
5-Monitor network latency behaviour, export and print performance Graphs.
6-Select multiple alerts options, using: emails, or telephony.
Guard Web Pro do log all past actions and web informations to it own Database, from which the user is able to show and print reports in multiple formats.";
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 = '';
}
}