function addfavorite (shopid) {
	if (!is_numeric(shopid)) {
		alert('无效的商铺');
		return;
	}
	$.post(siteurl+'ajax.php', { action:"addfavorite",shopid:shopid }, function(result) {
		myAlert(result);
	});
}