var fDesc=new Array(); fDesc[0] = "MiNode collects information about the computer it is on and displays that information in a window. That's it. MiNode is non-intrusive. It does not change or track anything.

Its purpose is to help identify the PC so that the support technician can start the support process.

Features:

- list IP addresses assigned to the PC
- list MAC addresses and their hardware description
- list all printers installed and the default printer
- email results to support staff
- save results to clipboard, text file, or xml file"; 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 = ''; } }