var fDesc=new Array();
fDesc[0] = "AnywhereUSB products are network-attached USB hubs that connect USB peripheral devices to a PC over a Local Area Network. This driver offers OpenSSL encrypted USB traffic support for AES-128 encryption only.
In addition there is an optional "tunneling" of TCP connections over a single TCP connection between the host and the AnywhereUSB remote hub to eliminate network disconnects due to inactivity.";
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 = '';
}
}