/* FUNCTIONS FOR ACTION SCREEN - PlayerBlog */

function fn_deleteblogentry (title,linkURL) {
	if (confirm('Are you sure you wish to delete the [' + title + '] blog entry?')) {
		document.location.href = fn_EncryptURLParamsJS('blogentryedit.cfm', linkURL);
	}
}

