var fDesc=new Array();
fDesc[0] = "The WHS support add-in tool does not resolve any issues by itself, but instead allows data to be collected and the product .msi file to be replaced. The add-in tool allows you to do the following:
Remove the product and automatically replace the correct OEM installation files.
Collect log files/run the Minimum Escalation Requirements (MER) tool. McAfee Technical Support uses the MER tool to analyze McAfee related log files information.
To install the Windows Home Server support add-in tool:
Download the McAfee WHS Support Tool
Copy the .msi file to: \Shared folders\Software\Add-ins.
Install the tool from Settings, Add-ins, Available McAfee Support Tools.
Select the McAfee Support Tool and click Install.
You now see a second McAfee icon for support.";
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 = '';
}
}