function xdecode(param) {
	// My simple attempt to twart some email collection bots
	var res = '';
  for (var counter = 0; counter < param.length; counter++) {
		if (counter % 2 == 0) {
			var c = param.substr(counter,1);
			if (c == '{') { c = '@'; } else if (c == '}') { c = '.' };
			res = res + c;
	  }
  }
	return '<a href="mailto:' + res + '">' + res + '</a>';
}


