// var oInfoPopup = window.createPopup();
var oHelpWindow = null;

function showInfoPopup(infoText) {
  var oPopupBody = oInfoPopup.document.body;
  oPopupBody.innerHTML = infoText;
  oPopupBody.style.font = "8pt sans-serif";
  oPopupBody.style.color = "infotext";
  oPopupBody.style.backgroundColor = "infobackground";
  oPopupBody.style.border = "1px solid black";
  oPopupBody.style.padding = "1px";
  oInfoPopup.show(0, 0, 200, 0);
  var realHeight = oPopupBody.scrollHeight + 2;
  oInfoPopup.hide();
  oInfoPopup.show(event.srcElement.scrollWidth + 8, 0, 200, realHeight, event.srcElement);
}

function hideInfoPopup() {
  oInfoPopup.hide();
}

function showHelpWindow(helpUrl, Show) {
  var width = (screen.availWidth / 3);
  var height = (screen.availHeight / 3);
  var left = ((screen.availWidth - width) / 2);
  var top = ((screen.availHeight - height) / 2);
  var oHelpWindow = 0;
  if(Show=='True')
  {
	window.open(helpUrl, "helpWindow", "top=" + top + ",left=" + left + ",height=" + height + ",width=" + width + ",directories=no,location=no,menubar=no,toolbar=no", true);
  }
  return oHelpWindow == null;
}
