function highlightmetasearch() {
	document.post.message.select(); document.FORMNAME.TEXTAREANAME.focus();
	}
	function copymetasearch() {
	highlightmetasearch();
	textRange = document.post.message.createTextRange();
	textRange.execCommand("RemoveFormat");
	textRange.execCommand("Copy");
	alert("This post has been copied to your clipboard.");
}

