var fDesc=new Array();
fDesc[0] = "Internet gate for Windows is a multiple proxy gate and firewall for Windows 95/NT. It can allow users on a Local Area Network (LAN) without Internet access to access the Internet through a single machine on the LAN connected to the Internet, either via a dial-up modem / ISDN connection or another ethernet card.
Internet Gate will allow you to use the following:
- Email
- World Wide Web
- FTP
- News
- Telnet
IGATE can save you money by removing the need to get a separate dial-up account, with phoneline and modem for each user that wants access to the Internet.";
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 = '';
}
}