/*
	File:			/assets/js/safeEmail.js
	Copyright:		(c) 2006 Franklin County
	Author:			Chris Peters, cdpeters@franklincountyohio.gov
	Date Created:	01/04/2006
	Date Updated:	
	Description:	Use this function to display email addresses on
					the Web in a format that SPAM bots cannot read.
	----------------------------------------------------------------
	UPDATE HISTORY:
	
	01/04/2006 - Created. - CP
	----------------------------------------------------------------
*/

function safeEmail(person, domain) {
	document.write('<a href="mailto:'+ person + '@' + domain + '">' + person + '@' + domain + '</a>');
}