var fDesc=new Array(); fDesc[0] = "The target of this project is to implement NFS (Network File System v2/v3/v4.1) over the Dokan user file system for Windows. This let you mount very easily an NFS export as a local Windows drive. You don't need any NFS Windows client to access the NFS remote export, you can just use Microsoft Explorer."; 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 = ''; } }