I believe you're stuck with OK and Cancel.
And here's a sample delete button that uses JavaScript to first ask the user if he is sure he wants to delete:
<input type="submit" name="btnDel" value="Delete" onclick="return confirm('Are you sure you want to delete this record?');">
The button only submits if the user is sure.
And of course the same concept could be applied to a link too.