var newStoreCounter = -1;

function newStore() {
	showLoading();
	$.ajax({
		url: "modules/Storelocator/ajax/newStore.php?counter=" + newStoreCounter,
		success: function(data) {
			$("#storelist").append(data);
			hideLoading();
			newStoreCounter--;
		}
	});
}

function deleteStore(id) {
	$("#sl_" + id).remove();
}
