function confirmAction(theAction) {
	if (theAction == 'ribble') { theMessage = "Nothing" }
	else if (theAction == 'DeleteEmail') { theMessage = "Send this message to Trash?" }
	else if (theAction == 'DeleteEmails') { theMessage = "Send selected messages to Trash?" }
	else if (theAction == 'SaveEmails') { theMessage = "Save selected messages?" }
	else if (theAction == 'EmptyTrash') { theMessage = "Empty the Trash folder?" }

	var agree = confirm(theMessage);
	if (agree)
		return true;
	else
		return false;
}