/* 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()
	}
}

function fn_checkcomment(){
	if (document.form2.comment.value == '') {
		alert ('You need to enter your comment');
		document.form2.comment.focus();
		return false;
	} else {
		return true;
	}
}
