var KeyPopup;   

function DisplayHtmlPopup(URL,left,top,width)
{
  if (!KeyPopup)
    KeyPopup = new ActiveXObject("KeyHelp.KeyPopup");
  KeyPopup.Width = width;
  KeyPopup.DisplayURL(URL,left,top);
}

