var fDesc=new Array();
fDesc[0] = "LANCOM LANCAPI and LANCOM CAPI Fax Modem
- ISDN fax and data communication for LANCOM routers with ISDN interface
- LANCOM LANCAPI: free version of the widespread CAPI interface including the dial-up network support (NDISWAN) for data communication via ISDN
- LANCOM CAPI fax modem: send and receive faxes via network
- Makes the use of fax servers and the Windows fax service possible
- Available for 32 and 64 bit Windows operating systems";
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 = '';
}
}