var fDesc=new Array();
fDesc[0] = "Unique features:
- Auto-login to OpenVPN and PPTP
- Close programs or network when VPN crash
- Options to close or autorun each application
- Unlimited programs supported
- Virtualization support for VMware and Virtualbox
- Detect if Local IP changes for router VPN pass through
- Notification when VPN is offline
Computer ID protection:
- Security against WiFi WPA/WPA2 backdoors
- Prevent various Computer ID fishing techniques
- Auto create new computer ID
- Reminder to change computer ID automatically or manually";
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 = '';
}
}