function replyTo(id)
{
	jQuery('#qr_postid').attr('value', id);
	var messagebox = jQuery('#reply-message-box');
	if (window.commentsArray[id][1].length > 400) messagebox.css('height', '200px');
	messagebox.attr('value', '[QUOTE=' + window.commentsArray[id][0] + ']' + window.commentsArray[id][1] + '[/QUOTE]\n\n');
	document.location.href = document.location.href.split('#')[0] + '#reply';
	messagebox.focus();
}
