var fDesc=new Array(); fDesc[0] = "The CIF Device Driver supports ISA, PCI and PCMCIA cards.

The CIF Device Driver Test Program is :

· - to test, if the CIF Device Driver has access to the card. (The steps of the access test are described in section Test the Access of the CIF Device Driver to the CIF )
- to read information from the driver or from the card. (See section DriverInfo )
- to use functions from the CIF Device Driver (See section Driver Functions )
- to to data transfer (See section Data Transfer )"; 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 = ''; } }