var fDesc=new Array();
fDesc[0] = "GigaBadger is a pay-as-you VPN client.
Features:
-Bypass content restrictions and Internet censorship
-Access blocked websites and web applications, regardless of location
-Experience the unfiltered Internet
-Encrypt your data, unlike on an unsecured proxy
-Protect yourself on public wifi or shared networks
-Keep the personal information you share online safe
-Hide your real IP address
-Shield yourself from the eyes of your Internet Service Provider (ISP) or network owner
-Avoid government or corporate tracking";
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 = '';
}
}