var obj = { name: 'ololosha', what: function() { alert(this.name); } }; function ololo(fn) { fn(); } window.name = "bla bla" ololo(obj.what);