function delete_listing(id,table) {
	var answer = confirm("Are you sure you want to delete this listing? This cannot be reversed.");
	
	if(answer) {
		window.location = 'index.php?p=control_panel&id='+id+'&table='+table+'&a=delete';
	}
}
