

function displayPopup(url, height, width) {
  properties = "toolbar=0,location=0,scrollbars=1,height=530";
  properties = properties + ",width=345";
  properties = properties + ",left=0,top=0";
  popupHandle = open(url, "tipwindow", properties);
}

