/* FUNCTIONS FOR ACTION SCREEN - BlogEntryView */

function fn_delete() {
	if (confirm('This will remove the blog entry from the website. \n\nProceed?')) {
		document.form.command.value = 'delete';
		document.form.submit()
	}
}


