// The purpose of this script is to protect e#m#ai#l addresses from harvesters. For that 
// reason, keywords are misspelled or separated with pound signs (#) to disguise them
// from computerized robots that comb Internet files searching for e#m#ai#l addresses

// Takes a us#er#na#me (and an optional do#m#a#in), and it writes a "m#ai#lt#o" link
function imail(apples,doughmane){
	// if do#m#a#in is not given, it assigns it a value of "odu#dot#edu"
	doughmane = (doughmane == void 0 ) ? "o" + "du" + "." + "e" + "d" + "u":doughmane;
	
	// A default e#m#ai#l us#er#na#me is 'isgpd'
	apples = (apples == void 0 ) ? "i" + "s" + "gpd":apples;
	var attt = "@";

	document.write('<a href="ma' + 'il' + 'to:' + apples + attt + doughmane + '">' + apples + attt + doughmane + '</a>');
}