Popups are fun! Honest!
window.open()
Popups are used for advertising so for most people they are an irritation
However there are some clever things you can do with them, if you like that sort of thing
Orgeano 1 and 2 has support for them. Oregano 1 actually is capable of doing a lot more with them
There are also two commands called moveTo and moveBy that can be used to move windows
<script type="text/javascript">
function pop()
{
var popwindow = window.open("Examples/popwindow.html", "popwindow1", "width=200 ,height=100, left=200, top=200")
}
setTimeout("pop()", 4000)
</script>
The popup can be reused
You need to enable Popups on your browser, these dont work correctly on Oregano2
Wavy Popup (uses moveTo to move windows)
Popup bouncing footballs (uses moveTo to move windows)
Page13