<!--
function handleListChange_post(theList) {
	var numSelected = theList.selectedIndex ;
	if (numSelected != 0)
	{
		textValue = document.PostTopic.Message.value ;
		textValue = textValue + theList.options[numSelected].value ;
		document.PostTopic.Message.value = textValue ;
		theList.selectedIndex = 0 ;
		document.PostTopic.Message.focus() ;
	}
}

function handleListChange_reply(theList) {
	var numSelected = theList.selectedIndex ;
	if (numSelected != 0)
	{
		textValue = document.REPLIER.ReplyMessage.value ;
		textValue = textValue + theList.options[numSelected].value ;
		document.REPLIER.ReplyMessage.value = textValue ;
		theList.selectedIndex = 0 ;
		document.REPLIER.ReplyMessage.focus() ;
	}
}

function handleListChange_edit(theList) {
	var numSelected = theList.selectedIndex ;
	if (numSelected != 0)
	{
		textValue = document.REPLIER.EditedMessage.value ;
		textValue = textValue + theList.options[numSelected].value ;
		document.REPLIER.EditedMessage.value = textValue ;
		theList.selectedIndex = 0 ;
		document.REPLIER.EditedMessage.focus() ;
	}
}

//-->