function update_banner_count(prepend, id) {
  
  
  new Ajax.Request(prepend+"/lib/banner_counter.php", {
 onSuccess : function(resp) {
  // alert("The response from the server is: " + resp.responseText);
 },
 onFailure : function(resp) {
   //alert("Oops, there's been an error.");
 },
 parameters : "id="+id
});
  
}

function reportError(request) {
  $F('zipResult') = "Error";
}
