

  // ----------NEW WINDOW FOR "WORDS"-----
  function newWindowWords(url)
  {
    window_words = window.open(url, 'window_words', 'width=710,height=500,top=5,left=5,toolbar=no,menubar=no,location=no,scrollbars=no,resizable=yes')
    window_words.focus();
    
    var screen_width = window.screen.availWidth;
    var screen_height = window.screen.availHeight;
    var x_location = parseInt(screen_width / 2) - 355;
    var y_location = parseInt(screen_height / 2) - 250;

    window_words.moveTo(x_location, y_location);
  }

