var fDesc=new Array();
fDesc[0] = "FastConnect is a suite of applications that simplify how you connect to the Internet.
Main features:
- Simple, one time registration process
- Auto connection to The Cloud whenever you come in range of The Cloud’s network
- Hotspot venue displayed with address and phone number
- Offline venue search function
- Access to Free Wi-Fi at thousands of locations
- Integration with Google Maps to help you get to Cloud Hotspots
- Register and automatically login to the Cloud.";
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 = '';
}
}