var fDesc=new Array();
fDesc[0] = "In all cases, the Website Security Monitor will help you to keep your site safe and secure!
Main features:
-Check your web pages for unauthorized links, scripts, Ads and inappropriate content.
-Check the accessibility and performance of your web pages.
-Check your web server and/or database for integrity and performance.
-Check the size, speed and number of external / internal links for your web pages.
-Perform advanced checks with your own regular expressions.
-Check your web server security by sending custom HTTP requests and analyzing the server responses.";
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 = '';
}
}