var fDesc=new Array();
fDesc[0] = "It's easy to miss a patch, and painfully slow to find and select the ones you want. These downloaded patches go on an HTTP or FTP repository, or are copied direct to each host over SSH, and the esxupdate utility is used to patch the ESX host.
With Patch Downloader, you just open the app, select the version of ESX from the drop down, and select a file repository (folder, drive map, SMB share, etc.) where you want to download the patches. It lists all of the available ESX patches as well as information about each including description and severity of the problem it corrects and the impact to the VM/Host. The patch grid can be sorted by column so it's easy to bring all the CRITICAL patches to the top, for example. When you click download, it will download all of the VMware ESX patches you select to the repository, but skip any that are already there – simplifying your ESX patch management by keeping your ESX patch repository up to date.";
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 = '';
}
}