function forum_pop_window(url)
{
	window.open(url, 'wrbVjcw0ef', 'width=1, height=1, directories=no, location=no, status=no, toolbar=no, scrollbars=no, leftmargin=0, topmargin=0, resizable=yes, screenX=50, screenY=20');
}


function report_bad_post(post_id, confirm_message)
{
	var confirmed = false;

	if(confirm_message.length)
	{
		confirmed = confirm(confirm_message);
	}

	if(confirmed)
	{
		forum_pop_window('/foorum/forum_send_report.php?message_id=' + post_id + '&reason=bad_post');
	}
}
