function OnLoad() {
  if (google.loader.ClientLocation)
  {
  lat = google.loader.ClientLocation.latitude;
  lon = google.loader.ClientLocation.longitude;
  city = google.loader.ClientLocation.address.city;
  country = google.loader.ClientLocation.address.country;
  country_code = google.loader.ClientLocation.address.country_code;
  region = google.loader.ClientLocation.address.region;
//        texto += '<a href="http://maps.google.com/maps?q=' + google.loader.ClientLocation.latitude + ',+' + google.loader.ClientLocation.longitude + '>Open Location in Google Maps</a><br />';
  $.get("http://www.proyectosaten.com/geoloc.php",{'lat':lat, 'long':lon, 'city':city, 'country':country, 'country_code':country_code, 'region':region},function(res){feedback(res);});
  }

  }

function feedback(res)
  {
  }
google.setOnLoadCallback(OnLoad);