This is where that is determined:
Code:
function loadwindow(url,width,height){
if (!ie5&&!ns6)
window.open(url,"","width=width,height=height,scrollbars=1")
else{
document.getElementById("dwindow").style.display=''
document.getElementById("dwindow").style.width=initialwidth=width+"px"
document.getElementById("dwindow").style.height=initialheight=height+"px"
document.getElementById("dwindow").style.left="30px"
document.getElementById("dwindow").style.top=ns6? window.pageYOffset*1+30+"px" : iecompattest().scrollTop*1+30+"px"
document.getElementById("cframe").src=url
}
}
Change the colored numbers. 30 from the left and 30 (two places in the above) from the top are the 'default'. You could also do this:
Code:
function loadwindow(url,width,height,wleft,wtop){
if (!ie5&&!ns6)
window.open(url,"","width=width,height=height,scrollbars=1")
else{
document.getElementById("dwindow").style.display=''
document.getElementById("dwindow").style.width=initialwidth=width+"px"
document.getElementById("dwindow").style.height=initialheight=height+"px"
document.getElementById("dwindow").style.left=wleft+"px"
document.getElementById("dwindow").style.top=ns6? window.pageYOffset*1+wtop+"px" : iecompattest().scrollTop*1+wtop+"px"
document.getElementById("cframe").src=url
}
}
Now you can specify in the calls, ex:
Code:
<a href="javascript:loadwindow('http://www.google.com',600,400,50,100)">Geocities</a>
Bookmarks