function fetch_contact(editor)
{
	$.trim(editor);
	if(!editor)	return $('#editor_contact').css({background:"",width:0,height:0});
	$.getJSON(site_root+'ajax/ajax.php?action=fetch_contact&editor='+encodeURIComponent(editor)+'&t='+Math.random()+'&callback=?',
		function(json)
		{
			if(json.error)	return;
			$('#editor_contact').html('<table border="0"><tr><td width="160" nowrap><strong>电话</strong>: '+json.telphone+'</td><td rowspan="3" nowrap><h3>'+editor+'</h3></td></tr><tr><td nowrap><strong>QQ</strong>: <a href="http://wpa.qq.com/msgrd?V=1&amp;Uin='+json.qq+'&amp;Site='+editor+'&amp;Menu=yes"><img alt="'+editor+'为你服务" border="0" src="http://wpa.qq.com/pa?p=1:1029820902:10" /></a></td></tr><tr><td nowrap><strong>Email</strong>: <a href="mailto:'+json.email+'">点我发送邮件</a></td></tr></table>');
		}
	);
}