one link, two changes

wxdqz

New Member
I'm trying to use a function to open a new window with constrained properties. The problem is every time I select the link, the original page from which the link was selected reverts back to my root directory. Oh how irritating! Below is the function, and then below that the code attached with the link I want in the new constrained window.

<!--

function newWin() {
newWin = window.open("prod/tea.html","newWin"," width=700,height=600,menubar=0,status=0,toolbar=0,directories=0,scrollbar=0,resizable=0");
newWin.focus();
}

//-->

. . . .

<a href=http://www.webdeveloper.com/forum/archive/index.php/"" onClick="newWin();",

Below the anchor I have a piece of roll-over script before I close things off. Can anyone help?
 
Back
Top