|
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
|