// ** To use this code, place the one line of code below into the <a href=""> link tag.
//
// onclick="popup(this);return false"
//
// ** Result: <a href="" onclick="popup(this);return false">
//

function popup(src) {
  var popWindow =
    window.open(src.getAttribute('href'), 'popup', 'location=1, statusbar=1, scrollbars=1, menubar=0, width=500, height=250');
  popWindow.ispopup = true;
  popWindow.focus();
  return popWindow;
}
