function delete_post(name, postID, threadID, offset) {
	var result = confirm(name + ", are you sure you want to delete this?");
	if (result) {
		document.location.href="delete_post.php?postID="+postID+"&threadID="+threadID+"&offset="+offset;
	}
}

function checkgood(good) {
	if (good != 0) {
		alert("You've lost your blog privileges. Sorry.");
		return false;
	}
	return true;
}
