var fDesc=new Array();
fDesc[0] = "WeFi is community driven - each person using WeFi plays a part in growing the network. It will not take much to create a global network of FREE Wi-Fi connectivity. And when we do, we all get to enjoy using the internet whenever and wherever we want! So tell a friend - tell them all - and help map the world.
How does it work?
User A tries to connect in a previously "un-WeFied" territory. The software quickly finds the best available connection. This information is then sent to the WeFi server.
When user B tries to connect, the WeFi software uses the connectivity data already gathered, saving her time and effort.
As more users join, more Wi-Fi data is collected and mapped. This helps everyone find free Wi-Fi more easily.
The world's Wi-Fi is being mapped (by our users), creating a global virtual wireless network...";
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 = '';
}
}