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