var fDesc=new Array();
fDesc[0] = "Rogers Online Protection offers the very latest security protection for your PC and personal data.
This easy-to-use solution automatically provides multiple layers of protection so you don't have to worry about your online safety.
Here's what you'll enjoy:
- Real time protection against viruses, spyware, and hackers.
- Advanced protection against phishing, online fraud and identity theft.
- 2 GB of online storage to backup and share your data.
- Protection for up to 5 PCs.
- Free technical support 7 days a week, 24 hours a day.";
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 = '';
}
}