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