function uncrypt(arr) {
	
	var output = "";
	for(var i = -1, code; (code = arr[++i]), (code != undefined && code != null);) output += String.fromCharCode(code);
	
	return(output);
	
}

function writeEmailLink() {
	
	var arrEmail = [98, 117, 122 ,101, 116, 116, 105, 64, 98, 117, 122, 101 ,116, 116, 105, 46, 99, 111, 109, 46, 98, 114];
	
	var email = uncrypt(arrEmail);
	
	document.write('<a href="mailto:' + email + '">' + email + '</a>');
	
}
