// JavaScript Document

function ajax_update_stats(advert_id, stat_type){
  var httpxml;
  try{ // Firefox, Opera 8.0+, Safari
    httpxml=new XMLHttpRequest();
  }
  catch (e){ // Internet Explorer
    try{
      httpxml=new ActiveXObject("Msxml2.XMLHTTP");
    }
    catch (e){
      try{
        httpxml=new ActiveXObject("Microsoft.XMLHTTP");
      }
      catch (e){
        alert("Your browser does not support AJAX!");
      	return false;
      }
    }
  }

  var url="../ajax/update_statistics.php";
  url=url+"?advert_id="+advert_id;
  url=url+"&stat_type="+stat_type;
  url=url+"&rnd="+Math.random();
  httpxml.open("GET", url, true);
  httpxml.send(null);
}