Use
Wrap your function with an anonymous function (aka lambda):
$addHandler(o, 'click', function() { f(my, arguments, go, here); });
Alternative solution:
If you had a function that created partials, you could do that as well - I use a toolkit that provides for that, and this is how it would be done:
$addHandler(o, 'click', partial(f, my, arguments, go, here));
I don't know (and actually doubt) that Microsoft's framework provides for that, but you could look into writing your own partial function.
