
function refreshLocation() {
  // tableRefresh = document.getElementById('tableRefreshLocations').value;
  // coreGet("itemList", "/business.list.rpc?" + tableRefresh, "itemList");
}

function saveBusiness() {
  corePostLoop('result', '/business.save.rpc', document.getElementById('uploadform'), false, 'result', 'refreshLocation');
}

function deleteBusiness(locationID) {
  coreGetLoop('itemDetail', '/business.save.rpc?delete=true&locationID=' + locationID, 'itemDetail', 'refreshLocation');
}

function reviewBusiness(locationID) {
  hide("ads");
  coreGet('itemDetail', '/business.review.rpc?locationID=' + locationID, 'itemDetail');
}

function initItems() {
  // coreGet("itemList", "/business.list.rpc", "itemList");
}

YAHOO.util.Event.addListener(window, "load", initItems);

