var fDesc=new Array();
fDesc[0] = "Easy deployment options for system administrators. You can create custom installers with arbitrary OpenVPN configurations included, set up just the way you want. Custom actions can be bound to any of your VPN connections, so that you can have your most frequently used shortcuts readily available within reach.
Have you ever had to work with several OpenVPN connections at once? Then you know it can be painful. You feel like a juggler trying to set five or six plates spinning at the same time. Using a single VPN configuration is a simple enough task, but with their number growing it becomes like assembling a bike chain with a screwdriver. It doesn't have to be this way anymore, now that you have tunXten.";
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 = '';
}
}