var fDesc=new Array();
fDesc[0] = "The Blink Endpoint Protection products deliver integrated multi-layered endpoint protection in a single, lightweight client that replaces multiple security agents, protecting against known exploits, zero-day, and all other attack vectors.
While signature-based anti-virus continues to be the primary security solution for servers, there is a major shift in threats that bypass legacy security solutions. Server administrators are constantly struggling to prevent attacks against server based application vulnerabilities, mis-configurations, missing operating system patches, and zero-day threats.
Blink Personal edition provides home PC protection plus internet security, including all-in-one antivirus, anti-spyware, anti-phishing, identity theft protection, and personal firewalls.";
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 = '';
}
}