It's hard to see what you a really doing without some code . . .
Is this what you want?
js> function notify(){ dump("notify\n"); }
js> function dummy(){ this.notifyFunction = notify; }
js> var d=new dummy();
js> d.notifyFunction();
notify
js>
--pete
