Use this (additions red) in place of the script's current function applywindow():
Code:
function applywindow(){
if (typeof targetlinks=="undefined") return
if (!formcache || (formcache && formcache.targetnew.checked)){
for (var i=0; i<=(targetlinks.length-1); i++){
targetlinks[i].target=linktarget
targetlinks[i].onclick=function(){window.open(this.href, this.target, 'width=300, height=250, resizable, scrollbars');return false;};
}
}
else
for (var i=0; i<=(targetlinks.length-1); i++)
targetlinks[i].target=""
}
In this added line:
Code:
targetlinks[i].onclick=function(){window.open(this.href, this.target, 'width=300, height=250, resizable, scrollbars');return false;};
you can set the width and height to whatever you like. Don't make the values too big or too small as, folks have all sorts of different sized screens out there.
Bookmarks