Dave,
I may be wrong (it won't be the first time), but if you are looking for a goto statement, you are not likely to see one in Scratch. That is because almost no object oriented programming language has one (with the exception of C++, and even there it is considered anathema to use it). Java, python and almost any other modern language simply does not support it. One main reason for not having goto is the cleanup problem. Using goto's can lead to what is known as a memory leak - not a good thing.
If you find out that scratch has what you are looking for, please let me know, but I think your only alternative is to provide the function yourself programatically.
Alan