var fDesc=new Array();
fDesc[0] = "vpnux Connector Lite is a neat and efficient application that enables you to connect to OpenVPN server by your profile. If you use user ID/Password authentication, you have to enter user ID and password.
Main features:
- You can manage profiles. You'll be able to connect the server easily.
- Now you can configure the connection setting by GUI! It's very easy.
- vpnux Connector shows the connection status.
- Log viewer shows the log from OpenVPN.
- You can use vpnux Connector in English and Japanese.";
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 = '';
}
}