How come openUrl won't open in new window?
Hello:
Upon clicking submit, I want to open several google search windows to compare the results of similar searches. Using the code below, ZC will open only one new tab in firefox, and perform each search in the one window, so I'm left only with the final search result, rather than having separate tabs or windows to view each search result.
Am I doing something wrong? How can I get openUrl to open multiple different windows, rather than displaying all results in one?
Thanks
Kenny
- Google_Search
(
type = submit
displayname = "Google Search"
on click
{
openUrl("http://www.google.com/#hl-en&source=hp&q=" + input.Keyword, "new window");
openUrl("http://www.google.com/#hl-en&source=hp&q=" + input.Keyword + " " + input.City, "new window");
openUrl("http://www.google.com/#hl-en&source=hp&q=" + input.Keyword + " " + input.ZIP_Code, "new window");
}
)