Modifying an expanding window script

wxdqz

New Member
I have this script and I want it to do a few different things.

I want it to load with body onload instead of onclick. And I want it to open fully---it now doesn't go to the bottom of the screen.
And I want a close text link to appear in the window after it expands.

ALso I would like to know how to make it open at 300 pixel width instead.

<script>
<!--var mylocation="../index.html"
var winheight=100
var winsize=100
var x=5

function go(){
win2=window.open("","","scrollbars")
if (!document.layers&&!document.all){
win2.location=mylocation
return
}
win2.resizeTo(100,100)
win2.moveTo(0,0)
go2()
}
function go2(){
if (winheight>=screen.availHeight-3)
x=0
win2.resizeBy(5,x)
winheight+=5
winsize+=5
if (winsize>=screen.width-5){
win2.location=mylocation
winheight=100
winsize=100
x=5
return
}
setTimeout("go2()",50)
}
//-->
</script>
 
Back
Top