function showCompanyInfo(infotype,uid,cid,id) {
	$.ajax({
		type: 'POST',
		url: '/company/ajax/act_view_company_info.cfm',
		dataType: 'jsonp',
		data: {
			click_type: infotype,
			uid: uid,
			cid: cid,
			eid: '#'+id
		},
		success: function(msg){
			$(msg.eid).html(msg.data);
		}
	});
}
