Ray's Demo Page 3
An interesting cursor image effect & what Lycos Uk's ad frame code does
Because the button below uses <input type="button" value="Close this window (oops)" onclick="window.close()"> it does not work, this is because of the code Lycos UK uses to produce the ad frames.
In fact because of the code, none of the following methods work ...
<input type="button" value="Close this window" onclick="window.document.close()">
<input type="button" value="Close this window" onclick="window.close()">
<input type="button" value="Close this window" onclick="self.close()">
<input type="button" value="Close this window" onclick="close()">
Instead use,
<input type="button" value="Close this window" onclick="parent.close()">
or
<input type="button" value="Close this window" onclick="top.close()">
The button below uses <input type="button" value="Close this window" onclick="parent.close()"> and works.
If you are having difficulty in closing this window then press CTRL + W
This will close the top, active window.