Is there a way to precheck for a label before using the GOTO command. If the label does not exist the script just errors out. Or is there a way to have it continue on with the script like 'On Error Resume Next'

e.g.
goto MYLABEL
:MYLABEL
?"This works, but if MYLABEL didn't exist this would fail right out of the script."