Event.observe(window, 'load', StartObserving, false);
function StartObserving(evt) {
	Event.observe('adminshoutbox_data', 'click', expandShout, false);
}
function expandShout() {
	$('adminshoutbox_data').setStyle({height: '97px'});	
}
function updateAdminShout(url, theFormName) {
	var shoutMessage = Form.Element.getValue('MPIII_AdminShoutMsg');	
	if(shoutMessage == "" || shoutMessage == null) {
		alert("You did not enter a message");
		return false;
	}
	new Ajax.Updater({ success: 'adminshoutbox_data', failure: 'adminshoutbox_data' }, url, {
		method:'post',
		parameters: Form.serialize(theFormName)
	});
	Form.Element.clear('MPIII_AdminShoutMsg');
}
