florida
11-12-2002, 11:51 AM
I have a pop up window that works great but I want it to pop up to the top of my screen. It currently pops up to the bottom. Any advice on how I can do this?
<script>
function openpopup(){
var popurl="http://website/mysite.htm"
winpops=window.open(popurl,"","width=655,height=600,status,menubar,resizable,")
}
</script>
<h3>Pop up link</h3>
<a href="javascript:openpopup()">My Link<!-- -->
</a>
<script>
function openpopup(){
var popurl="http://website/mysite.htm"
winpops=window.open(popurl,"","width=655,height=600,status,menubar,resizable,")
}
</script>
<h3>Pop up link</h3>
<a href="javascript:openpopup()">My Link<!-- -->
</a>