function xget(id) {
	return document.getElementById(id);
}


function my_show_email(oId){
	
	
	var o = xget(oId);
	if(!o)
		return;


	var str = unescape('%6d%61%69%6c%62%6f%78%40') + unescape('%72%6f%67%6f%7a%68%6b%69%6e') + unescape('%2e%72%75');

	o.innerHTML = '<a href="mailto:' + str + '">' + str + '</a>';
}


function init(){
		my_show_email('block_bottom_email');
}
