// --------------------------------------
// I has a popup
// --------------------------------------

function pop(popurl, width, height) {
var winpops=window.open(popurl,"","width="+width+",height="+height+"")
}

function pop_scroll(popurl, width, height) {
var winpops=window.open(popurl,"","width="+width+",height="+height+",scrollbars=yes")
}

function pp(url) {
  window.opener.location.href = url;

  if (window.opener.progressWindow)
  {
    window.opener.progressWindow.close()
  }
  window.close();
}