function confirm_delete(cid, comment, url) {
	if (confirm("Are you sure you want to delete comment: " + comment + "?")) {
		/*
		window.location = "deletecomment.html?cid=" + cid + "&url=" +
			"<?=urlencode($_SERVER['PHP_SELF'])?>" + "<?=urlencode("?l=$l")?>";
		*/
		window.location = url;
	}
}
function confirm_report(cid, url) {
	if (confirm("Are you sure you wish to report this comment?")) {
		/*
		window.location = "reportcomment.html?cid=" + cid + "&url=" +
			"<?=urlencode($_SERVER['PHP_SELF'])?>" + "<?=urlencode("?l=$l")?>";
		*/
		window.location = url;
	}
}

