I have links on a page which when clicked open up a second page in another window. This works fine on the first pass, but if I then go back to the index and then click on a different link the link works but the windows is not brought to focus.
e.g.
index.html contains:
<A HREF="page1.html target="_BLANK>page 1</A>
<A HREF="page2.html target="_BLANK>page 2</A>
If I click on the page 1 link a new window appears. I then click flip back to the index.html page (alt tab, or pressing the opened pages toolbar on the start line). This defocuses page1. Next I click the link to page 2. I can see the title of the page in the toolbar start line changing to page 2 but the window is not brought to focus.
How do I always bring the linked pop up page to the front when clicked? It only does it if the window is closed first and the index page is the only browser window open.
e.g.
index.html contains:
<A HREF="page1.html target="_BLANK>page 1</A>
<A HREF="page2.html target="_BLANK>page 2</A>
If I click on the page 1 link a new window appears. I then click flip back to the index.html page (alt tab, or pressing the opened pages toolbar on the start line). This defocuses page1. Next I click the link to page 2. I can see the title of the page in the toolbar start line changing to page 2 but the window is not brought to focus.
How do I always bring the linked pop up page to the front when clicked? It only does it if the window is closed first and the index page is the only browser window open.