function insertFormLetter()
{
	var menu = document.getElementById('formLetter')
	var bodyItem = document.getElementById('body')
	if (menu.value == 0)
	{
		bodyItem.innerHTML=''
	}
	else if (menu.value == 1)
	{
		bodyItem.innerHTML = 'We received your request on ChoralNet to borrow, rent or purchase an item. We have a special forum for such requests. '
			+ 'Please go to http://www.choralnet.org/new/rtb/244 and re-submit your post there. Thank you for using ChoralNet.'
	}
	else if (menu.value == 2)
	{
		bodyItem.innerHTML = 'You submitted what seems to have intended to be a private reply on our public forum. Please click on the envelope icon next to the user\'s '
			+ 'name and send the reply directly.'
	}
	else if (menu.value == 3)
	{
		bodyItem.innerHTML = 'Thank you for your interest in promoting your business on ChoralNet. It is a compliment to us that you consider it. However, '
			+ 'there is a fine line between an announcement and an advertisement. ChoralNet has become the largest online community of choral musicians through '
			+ 'diligent oversight of the content on its site and this post is closer to the latter than the former.\n\nHave you considered advertising on ChoralNet? '
			+ 'ChoralNet averages 15,000-20,000 visits daily, a number that will grow steadily as the merger between the American Choral Directors Association and '
			+ 'ChoralNet becomes more seamless. Please visit this link to learn how you can get your information out to a broader customer base:\nhttp://www.choralnet.org/advertising'
	}
}

