I\'m trying to convince a page that it is the window.top even though it is in an iframe.
In FF you can do
window.defineGetter(\'top\', fu
Setting window.top doesn't work. Its not allowed in IE.
I ended up having to make my own fake window object, fill it with most of the properties of the window object, and then making a fake .top property.