var fDesc=new Array(); fDesc[0] = "Media Server Feature Description

- Shared Folder: This panel consists of features that allow a user to add, delete and refresh shared folders. It also has a window to allow a user to see what folders are shared currently.
- Shared folder path: This window lists the entire shared folder’s path in your PC. For example, if I have a “Music” folder under my C: drive, the folder path will be “C:\Music”
- Add a folder: This feature allows a user to add a new folder that they would like to share on the network in order to allow the media player to browse and playback content from it.
- Refresh a folder: This feature allows a user to refresh a specific shared folder’s information on the Media Server. This is needed if a user has made changes to the specific folder after it was already shared."; 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 = ''; } }