Forum Moderators: open
In other words, If we lose our 'opener' reference by closing the second window, can the 3rd window reference a function on the first?
<script type="text/javascript">
var parent = window.opener;
var grandparent = parent.opener;
function doit() {
grandparent.doitgrandparent();
}
</script>