function helpButtonText(txt1, elename){
  //write the text to the div
  var p = new PopupWindow("helpbuttontext");
  p.offsetY = 25;
  p.populate(txt1);
  p.autoHide();
  p.refresh();
  p.showPopup(elename);
  return false;
}
