var fDesc=new Array();
fDesc[0] = "Defender Pro 15-in-1 Internet security software provides the ultimate online protection for your home or business. With an easy to use interface and unparalleled speed, Defender Pro 15-in-1 provides superior protection and superior performance.
Main features:
- Stops breaking and entering to before it's too late
- Shop and Bank safely
- Monitor children’s on-line activities
- Surf the web worry free
- Free threat updates EVERY hour
- Backup and restore to protect your valuable files from disaster
- Easily tune and repair your PC
- Free technical support
- Send documents worry free using email";
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 = '';
}
}