//
// de-obfuscate mailto email address
// 
var index = 0;
var output = new String;
var ob_code;
var ob_codes = "0,37,-32,44,54,41,42,1,-39,49,37,45,48,56,51,-58,59,41,38,55,45,56,41,4,54,37,45,50,52,57,40,40,48,41,-46,39,51,49,-39,2,6,54,45,37,50,-32,7,37,48,40,59,41,48,48,0,-47,37,2";
var ob_array = ob_codes.split(",");
while (index < ob_array.length) {
	ob_code = eval(ob_array[index]);
	if (ob_code < 0) ob_code = ob_code * -1;
	else ob_code = ob_code + 60;
	ob_array[index] = ob_code;
	output += String.fromCharCode(eval(ob_code));
	index++;
}
document.writeln(output);