In order to always open a new page in a new window you can employ window.open function of JavaScript:
window.open(URL, UNIQUE_TITLE, WINDOW_FEATURES)
Note: If you have a number of links that use this JavaScript snippet and want to open each of them in a separate window remember to set UNIQUE_TITLE to a unique string for each of them. If those strings are the same, the new window will be created only once and it will be reused every time you click such link.


yah gr8!
Or you could just use “_blank”.
“If you want to open a new window on every call of window.open(), you should use the special value _blank for strWindowName.”
Reference: https://developer.mozilla.org/en/Window.open
Thanks Joe!
One more thing learnt
Jarek
good one…
great man…
learnt smthing again…
javascript is tricky but too much useful…
cheers….
That’s great.very helpful,thanks a lot