function resizeAndCenterWindow( SET_WIDTH, SET_HEIGHT ) {
  var topLeftX = screen.width/2 - SET_WIDTH/2;
  var topLeftY = screen.height/2 - SET_HEIGHT/2;
  window.resizeTo( SET_WIDTH, SET_HEIGHT );
  window.moveTo( topLeftX, topLeftY );
  window.focus();
};
