var fDesc=new Array();
fDesc[0] = "An extension of a private network, a VPN encompasses links across shared or c. VPN connections use the connectivity of the Internet plus a combination of tunneling and data encryption technologies, such as the Point-to-Point Tunneling Protocol (PPTP) and Layer Two Tunneling Protocol with Internet Protocol security (L2TP/IPSec), to connect remote clients and remote offices.
Configure and deploy VPN connections to client computers that are ready to use, with no need for the user to configure any details
Get a brief introduction to VPN Reconnect, released in Windows Server 2008 R2 and Windows 7, which uses IKEv2 technology to automatically reestablish a lost VPN connection.";
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 = '';
}
}