function newWindow(myURL, n, w, h) {
  newWin = window.open(myURL, n, 'width='+w+', height='+h+', resizable=0, scrollbars=0, toolbar=0, menubar=0, location=0');
  newWin.moveTo(((screen.width/2)-(w/2)), ((screen.height/2)-(h/2)));
  newWin.focus();
}

