// Helper goop to manipulate MFMessage postings
function MFMessage() {};

MFMessage.quotePosting = function (goo, formBindingName, bodyBindingName) {
	var f = IFForm.formWithBindingName(formBindingName);
	if (f) {
		var b = f.formComponentWithBindingName(bodyBindingName);
		if (b) {
			b.setValue(b.value() + '[quote=\'' + goo.creator_firstName + '\']' + goo.body + '[/quote]');
		}
	}
};