View Single Post
Old 04-23-2002, 03:24 PM  
Steve
Confirmed User
 
Join Date: Feb 2001
Location: USA
Posts: 6,894
use target="new" and all the links will continue to open in that same window, instead of a brand new blank browser window.
I think you can just do that with a BASE TARGET="_new" in the HEAD section, too


put his in the head section

script
!--
function openScript(url, width, height) {
var Win = window.open(url,"openScript",'width=' + width + ',height=' + height + ',resizable=0,scrollbars=yes,menubar=no,status=no' );
}
//--
/script

with <> around the script parts
and add this to the anchor tags a href

javascript:openScript('put the URL here',500,720)

replace the height and width dimesions with whatever you need them to be
Steve is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote