var fDesc=new Array();
fDesc[0] = "cFos is a Dial-Up driver for DSL and ISDN. You can use cFos with the Windows Dial-Up Network to establish connections to the Internet.
For DSL connections cFos talks to you DSL Modem which is connected with a network adapter. For ISDN connections cFos uses the CAPI driver provided by the manufacturer of your ISDN card.
In addition, cFos offers Traffic Shaping for Internet connections, a firewall and a lot more features. With Traffic Shaping you get maximum bandwidth with minimal Ping.
For ISDN cFos emulates a modem at a COM port, so that you can use software, which was originally written for modems, with ISDN, too. cFos also has an ISDN caller monitor.";
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 = '';
}
}