function parseEmail(src)
{

	// if they paste in the following into an edit field:
	//   John Smith <johnsmith@hotmail.com>
	// remove the name and replace with only the e-mail address
	var address = src.value;
	if (address.length < 0)
		return;
	var openbracket = address.indexOf('<', 0 );
	if (openbracket < 0)
		return;
	var closebracket = address.indexOf ('>', openbracket )

	if ( closebracket > openbracket )
		src.value = address.substring(openbracket+1,closebracket);

	//alert(src.value);

}
