/*
Simple email address protection scheme to protect from mail harvesters yet allow convenient display to users.
Copyright 2008, Keen Kelly (www.keenkelly.com) All rights reserved.
Non-exclusive, unrestricted, transferrable license granted to Permco Engineering, Inc. without distribution.
*/

// Ex: insert_email('username', 'domain.com' [, 'Alternate Link Text/Code']);
function insert_email() {
	recipient = arguments[0];
	domain = arguments[1];
	email = recipient + '@' + domain;
	if (arguments.length > 2) linktext = arguments[2];
	else linktext = email;
	document.write('<a href="mailto:' + recipient + '@' + domain + '">' + linktext + '</a>');
}
