function delNews(id) {
	var doIt = confirm("Are you sure you would like to permanently delete this news item?");
	if (doIt) {
		document.newsDelForm.delId.value = id;
		document.newsDelForm.submit();
	}
}
