WebSys Spring 2008
Stupid JavaScript Tricks: Popup Window Source


<script>
newWindow = window.open("ad.html","", "toolbar=no,location=no,directories=no,menubar=no,scrollbars=no,status=yes,resizable=1,width=260,height=200");
</script>
 

<h2>Annoying Popup Window</h2>

<p>You should get a new window when you load this document
(unless you have popups blocked...) The important thing is
to make sure that the new window contains an annoying message.</p>




WebSys Spring 2008