function delete_post()
{
	ht = document.getElementsByTagName("html");
	ht[0].style.filter = "progid:DXImageTransform.Microsoft.BasicImage(grayscale=1)";
	if (confirm('Are you sure you want to delete this post?'))
	{
		return true;
	}
	else
	{
		ht[0].style.filter = "";
		return false;
	}
}
function reportuser(postid,section) { var wnd= window.open( "reportuser.php?pid=" + postid  + "&section=" + section); }