  function popUp(url, name, content) {
    w = window.open(url, name, "height=400, width=600, resizeable = 0, menubar = 0, scrollbars = 1");
    if (content != null && content != '') {
      w.document.write(content);
    }
  }
