function verifyDelete(id, ds, table){
	
	var answer = confirm('Are you sure you want to delete this item?');
	
	if (answer){
		
		var allFormVars = "id="+id+"&ds="+ds+"&table="+table;
		http("GET", "/cfcs/delete.cfc?method=deleteRemote", deleteResponse, allFormVars);
		
	}
	
	else {
		alert('Delete Canceled');
	}
}

function deleteResponse(obj){
	
	// alert of success
	alert(obj);
	
	// reload window
	window.location.reload();
	
}


