var maillist = new Array();

maillist['Katie Del Giudice'] = 'ucfhfeswebmaster@gmail.com';
maillist['Heather Lum'] = 'ucfhfeswebmaster@gmail.com';
maillist['Scott Ososky'] = 'ucfhfeswebmaster@gmail.com';
maillist['Joe Keebler'] = 'ucfhfeswebmaster@gmail.com';
maillist['Carrie Murphy'] = 'ucfhfeswebmaster@gmail.com';
maillist['Dave Schuster'] = 'ucfhfeswebmaster@gmail.com' ;

function setEmail(name){
	var addy = maillist[name];
	document.getElementById('addy').value = addy;  
	document.getElementById('mailto').innerHTML = 'Your email will be sent to: &nbsp;&nbsp;' + name;
}