Derma_Query
Example
Creates a popup box with buttons that print messages to the console when clicked.
Derma_Query(
"Are you sure about that?",
"Confirmation:",
"Yes",
function() print("They clicked the yes button.") end,
"No",
function() print("They clicked the no button.") end
)