function ForumShowPost() {
	document.getElementById("forumPost").style.display="block";
	window.scrollTo(0,0);
}

function ForumHidePost() {
	document.getElementById("forumPost").style.display="none";
}

function ForumShowPostQuote(id) {

	document.getElementById("forumPost").style.display="block";

	try {
		var post = document.getElementById("post");

		var response = HTTPPostRequest(
			false,
			"/private/get-post",
			{
				"id" : id
			}
		);

		if (response) {
			post.value = "[quote]" + response + "[/quote]";
		}


	} catch (e) {

	}


	window.scrollTo(0,0);

}


function ForumReportPost(author , id ) {

	var loc = window.location.href;
	var new_loc = loc.split("#");


	var url="I would like to report " + author +"'s post in the {thread} thread.\r\n\r\nLink : " + new_loc[0] + "#p" + id + "\r\n\r\nOther comments : ";
	window.location="/contact?subject=Report%20Message&message=" + escape(url);

}
