function loadShops(id)
{
	$.ajax({ url: "/resellers/showShops/"+id,
		type: "GET",
		dataType: 'html',
		cache: false,
		complete: function(res){
 	 		$("#tableShops").html(res.responseText);
		}
	});
}

function loadShopsCouponing(id,couponing_id)
{
	$.ajax({ url: "/couponingshops/"+id+"/"+couponing_id,
		type: "GET",
		dataType: 'html',
		cache: false,
		complete: function(res){
 	 		$("#tableShops").html(res.responseText);
			var _lightbox = $('#popup-win');
			_lightbox.shownFlag = true;
			jQuery.fn.simpleLightbox.positionLightbox(_lightbox);
		}
	});
}
