Movies calling functions from _root

How do you have movies call functions from _root?
Such that

//root
function go_up()
{
_y-=1;
}

//whilst editting the movieclip
onEnterFrame = function ()
{
go_up() //_root.go_up? blah
}