// Ned Batchelder's JavaScript helpers.
// http://nedbatchelder.com

function nospam(user,domain,args) {
	ch = String.fromCharCode;
	loc = "ma" + ch(105) + "lto" + ch(58) + user + ch(64) + domain;
	if (args) {
		loc += "?" + args;
	}
	window.location = loc;
}