var fDesc=new Array();
fDesc[0] = "With BlueGate HotSpot, you can transform your PC into a real WiFi hotspot, and share your computer’s Internet connection as Wi-Fi with any other PC or mobile device.
BlueGate is a very simple and user friendly software that turns your Windows 7/8/8.1 PC into a Wi-Fi Hotspot easily and quickly.
Main Features:
- Share any type of Internet Connection (LAN,Ethernet,3G/4G,Wifi,etc)
- WPA2 AES Encryption
- Extends your Router's range & Acts as a repeater
- View clients connected (Device name, Ip Address, Mac Address)
- Avoid Overcharges for Costly Connections
- Support Windows 7/8/8.1 (Support for Windows 10 soon)
- User Friendly & Light Weight
- Leaves nothing behind (Virtual adapter is cleared when hotspot is stopped)";
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 = '';
}
}