function abVisits(type,id) {
  $(document).ready(function() {
    $.ajax({
      url: 'index.php',
      data: 'visUpdater=yes&type='+type+'&id='+id,
      dataType: 'html',
      success: function (data) {
      },
      complete: function () {
      },
      error: function(xml,status,error) {
      }
    });
  });
  return false;   
}

function getKeyCode(e) {
  var unicode = (e.keyCode ? e.keyCode : e.charCode);
  return unicode;
}

