/**
 * recreates the link, so spammers are really angry at us
 * 
 * @param	string	n	for foo@example.net, n will be foo
 * @param	string	d	for foo@example.net, d will be example
 * @param	string	e	for foo@example.net, e will be net
 */
function fakeit(n,d,e) {
	window.location = "mai"+"lto:"+n+"%40"+d+"%2e"+e;
}

