function popupWindow() {
  href = arguments[0];
  height = arguments[1] || 300;
  width  = arguments[2] || 450;
  window.open(href, name, 'width=' + width + ',height=' + height + ',scrollbars=1,resizeable=1');
};

