var fDesc=new Array();
fDesc[0] = "With a VPN, your actual IP address is hidden from the services you visit. Not even your Internet service provider can see what you do online. Change your virtual location and you won't see the text "this video/service/website is unavailable in your country" again. Even on unsecured public Wi‑Fi, your traffic is encrypted and impossible to intercept.
FREEDOME blocks unwanted third-party tracking and malicious sites. This will also stop advertisers from making money at the expense of your privacy.";
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 = '';
}
}