<!--
// changes the lable on the message text area on the donate online page.
function simcha_message(element) {
	var message_label = document.getElementById('message_label');
	var initial_value = 'Send us a short message with your donation:';
	var simcha_note = document.getElementById('simcha_note');
	if ( element.value == 'Simcha' ) {
		simcha_note.style.display = 'block';
		message_label.innerHTML = 'Please tell us the names of your family or friends who are celebrating a simcha:';
	}
	else if ( element.value == 'Manchester 10k Run' || element.value == 'London Marathon 2010' ) {
		//simcha_note.style.display = 'block';
		message_label.innerHTML = 'Send us a short message with your donation:<br />NB: You can use this box to specify the name of someone you are sponsoring for a Fed fund-raising event eg bike-ride or 10K Run';
		simcha_note.style.display = 'none';
	}	
	else if ( element.value == 'Bike-ride (name rider supported)' ) {
		//simcha_note.style.display = 'block';
		message_label.innerHTML = 'Send us a short message with your donation:<br />NB: You can use this box to specify the name of someone you are sponsoring for a Fed fund-raising event eg bike-ride or 10K Run';
		simcha_note.style.display = 'none';
	}		
	else if ( element.value == 'Young Volunteer Contribution' ) {
		//simcha_note.style.display = 'block';
		message_label.innerHTML = 'Send us a short message with your donation:<br />NB: <strong>Please use this box to specify the name of the young volunteer you are contributing towards.</strong>';
		simcha_note.style.display = 'none';
	}		
	
	
	else {
		simcha_note.style.display = 'none';
		message_label.innerHTML = initial_value;
	}
}
//-->