OnClick prompt with buttons for 'Ok' or 'Cancel' without a plugin?

OnClick prompt with buttons for 'Ok' or 'Cancel' without a plugin?

Hi,

I'm sure this is really simple, but I can't figure out how to prompt a user before they delete an entry in my database-driven website.

I have this:
  1. $("a.deleteprompt").click(function()
  2.     alert("Are you sure you want to delete this entry?");
  3. });
But the only option there is 'Ok'. I need to set this up with a 'Cancel' option as well, but don't want to use a plugin like Impromptu to do so as it's overkill.

Can anyone help?

Thanks,

osu