function report_post(post_id) 
				{
					var url = '/wp-content/plugins/report_posts/report_posts-popup.php?p=' + post_id + '&r=expire';
					openpopup(url,425,175);
				}
function report_spam(post_id) 
			{
					var url = '/wp-content/plugins/report_posts/report_posts-popup.php?p=' + post_id + '&r=spam';
					openpopup(url,425,175);
			}
				
	function report_lnw(post_id) 
			{
					var url = '/wp-content/plugins/report_posts/report_posts-popup.php?p=' + post_id + '&r=lnw';
					openpopup(url,425,175);
			}								
	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);
			}				