var fDesc=new Array();
fDesc[0] = "WiFiPT is a Wireless service which allows you to access Broadband Internet in public zones, just as you would do at home or in the office.
Now you can check your e-mails, access chat and messenger applications, your company’s internal network or simply browse the Internet, outside your home!
The service allows you to:
- Send and receive e-mails;
- Browse the internet;
- Access your company’s internal network with the same security as if you were there.
What is a HotSpot ?
It’s a public zone where the WiFi PT service is available.";
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 = '';
}
}