
// Replaces the currently selected text with the passed text.
function replaceText(what)
{
	document.postForm.note.value = document.postForm.note.value+" "+what;
	document.postForm.note.focus();
}