function popUp(loc) {
  var popup = window.open( loc, "myWindow",
  "status = 1, menubar = 1, top = 200, left = 200, height = 150, width = 250, resizable = 1, scrollbars=yes" )

  popup.focus();
}

