var popupWindow
function createNew (URL, w, h) {
  if (!popupWindow || popupWindow.closed) {
    popupWindow = window.open(URL,"_blank",'HEIGHT='+h+',WIDTH='+w+',scrollbars=1,resizable=1,toolbar=0,location=0,menubar=0')
  } else{
    //bring existing subwindow to the front
    popupWindow.focus()
  }
}

function redirect(location) {
  window.location = location;
}

