function action_confirm(message) {
	var action = confirm(message);
	if(action == true) {
		return true;
	}
	return false;
}
