First sry for double posting but it wouldnt let me modify =/....
here i thought you all might like this if you dont know it
<script type="text/javascript">
// this is a basic code but i did make it [molster]
// Ver 1.0
// http://ssdesigns.proboards17.com
var popurls=new Array()
popurls[0]="URL"
function openpopup(popurl){
var winpops=window.open(popurl,"","width=,height=,toolbar,location,status,scrollbars,menubar,resizable")
}
openpopup(popurls[Math.floor(Math.random()*(popurls.length))])
</script>Ok first lets start with the text in red
CODE
popurls[0]="URL"
The URL you put were it says URL is the one that pops up, But you can make your pop-up show a random site just add..
CODE
popurls[1]="URL"
make sure the 0 is now a 1 [you can ad as many as you want.
Now the blue text. You can make the pop-up the size you want just do like this
CODE
width=500px,height=500px,
Now the last part You can make your window look diffrent, all you have to do is remove some of the things in green text, heres a list of what they do so you can remove the ones you want
toolbar- The tool bar you see at top of your browser [stop, home,back,favorites,ect]
location- The URL bar at top
status- the bar you see at the bottom that shows what is loading
scrollbars- the bars you use to make screen move [up, down] or [left, right]
menubar- File, Edit, View, ect
resizable- The person can make the pop-up biger, smaller
And thats it =_= There is one more thing you can do to your pop ups you can set them to like pop up every time someone comes to the site [thast what it is set to now] Only pops-up one time until the person closes the browser and comes back to site, And the last one is pops-up every X mins. I will post thos in a new ver some other time =_= beacuse thos deal with cookies and im still learning =) ALSO, FOR EVERYTIME YOU PLACE THIS CODE A POP-UP WILL COME SO IF YOU PLACE THIS 5 TIMES 5 POP UPS WILL COME, THIS WILL MAKE LOTS OF SPAM SO I WOULD NOT DO THIS!!!