Call function with argument

In the code I want to call the function like this _root.onMouseUp=do(“xyz”), but the way is not correct. Can anybody tell me the correct way to do this.


function do(abc) {
	trace(abc)
}
_root.onMouseUp=function(){
	do("xyz")
}