var fDesc=new Array();
fDesc[0] = "No WiFi in the hotel?
Use WiFi Hotspot to turn your cable network into a wireless network!
No wireless router in town?
Use WiFi Hotspot to instantly turn your PC into a wireless router!
How can I share my PC's 3G with my mobile devices?
Create your own WiFi network using WiFi Hotspot!";
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 = '';
}
}