<!--
// Popup tip window processing
function Popup(url, height, width) {
  properties = "toolbar=0,location=0,scrollbars=0,height=" + height;
  properties = properties + ",width=" + width;
  properties = properties + ",left=200,top=200";
  popupHandle = open(url, "tipwindow", properties);
}
// -->