var fDesc=new Array();
fDesc[0] = "For more information please read the latest HMS release Notes and Installation Options.
- Upgrading from HMS 6.4 to HMS 6.5 is now automatic and does not require Helpdesk intervention. If you would like to discuss the upgrade process please call the Helpdesk.
- Apple Mac users must contact the Helpdesk for assistance with installing HealthLink on OS X.";
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 = '';
}
}