var fDesc=new Array();
fDesc[0] = "Bsecure Online has been protecting families around the world since 2001 with the patented, cloud-based technology. In addition to the best filtering protection and reporting tools for Windows, Bsecure version 6.1 now has several industry-leading features:
- Most Comprehensive Social Networking Protection
- Most Comprehensive Online Media Filtering
- Parental Alerts monitor both Web and Social Networks
- Text and Email Alerts
- Exclusive Whole Home Filtering option for any device that enters your home
- Includes Macs, iPhones, Linux, Android
- Integrated Mobile Filtering Apps for iPhone/iPad and Android devices";
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 = '';
}
}