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(arrEmail) {
	
	if(!arrEmail) arrEmail = [109, 103, 64, 109, 97, 116, 104, 101, 117, 115, 103, 111, 114, 105, 110, 111, 46, 99, 111, 109];
	
	var email = uncrypt(arrEmail);
	
	document.write('<a href="mailto:' + email + '">' + email + '</a>');
	
}
