function email_person(person, username, hostname)

// Inserts email address dynamically, to reduce email harvesting,
// and without display of address (only 'person' being shown);
// note that the parameters are strings, so must be quoted when called.
// Developed from an idea by Gareth Saunders.

// To display the address, of course use script email.js/2.
// PG:08.04.2008/16.01.2009.

{	var	address = username + '@' + hostname;

	document.write('<a href=\"' + 'mail' + 'to:' + address + '\">' + 
		person + '</a>');
	}



// End of file email_person.js.





