function report_post(post_id,base_url) 
{
	var url = base_url + '/wp-content/plugins/report_posts/report_posts-popup.php?p=' + post_id;
	openpopup(url,400,300);
}
				
function openpopup(url, w, h) 
{	
	var top = (screen.height - h)/2;
	var left = (screen.width - w)/2;
	window.open(url, 'report' ,'toolbar=0,status=0,menubar=0,width='+w+',height='+h+',top='+top+',left='+left);
}
