var fDesc=new Array(); fDesc[0] = "Network Drive Control automatically maps network drives by network name when you logon. The program allows you to configure the automatic mapping of network drives when you logon based on the network(s) to which you are connected. It has no limit to the number of networks or drives that can be configured (except Windows built-in limits), and drive letters can be redundant. The program supports drive mapping via Server Message Block (SMB), Common Internet File System (CIFS), Netbios, as well as WebDAV.."; 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 = ''; } }