function uf_post_credits_delete_onclick() {
	var returnValue = false;
	if (confirm("You are about to delete this credit. Press 'Cancel' to stop or 'OK' to delete.")) {
		var hack = document.createElement("input");
		hack.name = "save";
		hack.value = "1";
		document.getElementById("post").appendChild(hack);
		returnValue = true;
	}

	return returnValue;
}
