var fDesc=new Array();
fDesc[0] = "G DATA ClientSecurity is a program that offers a reliable data security for your company data, protecting it against spam, viruses, Trojans and other malware. The powerful firewall provides a secure barrier against hacker attacks, sabotage and theft. It also provides maximum protection through proactive and signature-based detection.";
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 = '';
}
}