	function mbRemovePost(topicID,gameID,threadID,removeID,groupID)	{
		var yourstate=window.confirm("Are you sure you want to remove this post?")
		if (yourstate)
		{
			ajax("/ajax/mbPosts.asp?topicID=" + topicID + "&gameID=" + gameID + "&threadID=" + threadID + "&removeID=" + removeID + "&groupID=" + groupID,"pageContent")
		}
	}
	
	function mbCreatePost(topicID,gameID,threadID,quoteID,editID,replyID,groupID) {
		if (acctID > 0) {
			openPopUp("/ajax/mbCreatePost.asp?replyID=" + replyID + "&topicID=" + topicID + "&gameID=" + gameID + "&threadID=" + threadID + "&quoteID=" + quoteID + "&editID=" + editID + "&groupID=" + groupID,0,0)
		}
		else {
			alert("You must be signed in to perform this action")
		}
	}
	
	function mbForwardPost(topicID,gameID,threadID) {
		if (acctID > 0) {
		openPopUp("/ajax/mbForwardPost.asp?topicID=" + topicID + "&gameID=" + gameID + "&threadID=" + threadID,0,0)
		}
		else {
		alert("You must be signed in to perform this action")
		}
	}
	
	function mbViewThreads(topicID,gameID) {
		ajax("/ajax/mbThreads.asp?topicID=" + topicID + "&gameID=" + gameID,"pageContent")
	}
	
	function mbViewPosts(topicID,gameID,threadID) {
		ajax("/ajax/mbPosts.asp?topicID=" + topicID + "&gameID=" + gameID + "&threadID=" + threadID,"pageContent")
	}