Here's what I want to do:
function someEvent(e) {
}
onxxxx="someEvent()"
and turn that into:
function someEvent(e, arg1, arg2) {
}
onxxxx="someEvent(???)"
So basically, I want to pass other arguments including the default event
one, but I'm not sure quite how to