Hi all!
I'm trying to create an anchor which opens a new window @ every click for the URI it wants to make the user reach.
The code I made is this:
Code:
function openInNew( href )
{ newWindow=window.open( href , "UnEMS" , "screenX=100,screenY=10,height=490,width=740,scrollbars=1" );
newWindow.focus();
}
but it makes the anchor open no more than 1 new window, so if I click again on it, it refreshes always the same new window, doesn't create any new.
How can I modify this behaviour?
Thanx a lot!!