function obfuscate(domain, name) {
	if(domain == "") { // if you leave the domain blank
		domain = "csuchico.edu"; // the script assumes csuchico.edu
	}
	window.location.href=('mailto:' + name + '@' + domain.replace(/%%%/g,".")); // write out email address
}