
function load_blog_posts_by_keyword(keyword_id) {
	
	// set the keyword id value
	document.getElementById("blog_filter_keyword_id").value = keyword_id;
	
	// submit the form
	document.getElementById("blog_tag_form").submit();
}

function leave_blog_comment(blog_post_id) {
	
	// add the beerid value
	id = "comment_form_blog_post_id";
		document.getElementById(id).value = blog_post_id;
		
	// submit the form
	id = "comment_form";
		document.getElementById(id).submit();
}
