trouble with new window script and frames

wxdqz

New Member
I am trying to figure out a script that will allow me to open windows when a hyperlink is clicked. The one I am using now works, but once a user clicks on this link, the navigation portion of the frameset no longer opens links in the appropriate frameset target.

function launcher(url) {
self.name = "opener";
remote = open(url, "", "resizable,scrollbars,width=300,height=400,left=200,top=100");
}
 
Back
Top