Sarah
>> Initial Comment: >> >> I couldn't figure out why pages I was opening were not opening >> "maximized" (or using the whole window, at least) even though I have >> pagetemplate="maximized.htm"; in my localprefs.js. After trying a >> few different searches, I realized that maximized.htm only gets used >> when I actually search for something - so if I enter "amaz" the >> window will be smaller, but if I enter "amaz the two towers", it >> will use maximized.htm.
----------------------------------------------------------------------
> Comment By: Brent Dai (anonymous2)
> Date: 2004-02-04 08:23
>
> Change defer_tools.js like this.
>
> // Open a search window in an existing frame
> function openNamedSearchWindow(url, name)
> {
> var w = null;
> if (useExternalBrowser && DQSDLauncher)
> DQSDLauncher.OpenDocument(url);
> else if (typeof windowOpenFeatures != "undefined") {
> w = window.open(pagetemplate, name, windowOpenFeatures);
> w.open(url, name, windowOpenFeatures);
> } else {
> w = window.open(pagetemplate, name);
> w.open(url, name);
> }
> }
>
> This only applies when useExternalBrowser is false.
defer_tools.js
Description: JavaScript source
