function print_output(post_id) {
	if (post_id == "") {
		alert('Please select a post to print');
	} else {
		window.open('?printit=Y&post_id=' + post_id + '','print_output','width=600,height=300,scrollbars=1,resizable=1');
	}
}