function show_post_reply() {
	reveal("post_with_quote");
	reveal('post_container');
}

// Limit the number of times a quote can be added to the text box. Default 1
var quotes_allowd=1
var quotes_used=0

function add_quote_to_reply() {
	if ( quotes_used<quotes_allowd) {
		quotes_used++
		var post_text = document.getElementById("post_text").value
		document.getElementById("reply_text").value += "[QUOTE]"+post_text+"[/QUOTE]";
	}
}