var fDesc=new Array();
fDesc[0] = "Microsoft removed support for SLIP (Serial Line IP) from Windows Vista and Windows 7. As a result, users who upgraded to Windows Vista or 7 and have devices that use SLIP cannot connect to them over serial.
SLIP Connection Manager is a tool which allows you to establish a 802.3 connection over a serial port. It is simple to configure and easy to use.";
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 = '';
}
}