<html> <body> <script> function needed(){ ........ } </script> </body> </html> <iframe> <script> function distant(){ ...... } </script> </iframe>
window.top.needed();
MyFunk = function(){ alert('A'); }
window.MyFunk = function(){ alert('A'); }
parent.needed();