var gl = null;

function displayPosition(position) {
	$.ajax({
		type: "GET",
		url: "/ajax.php?lat=" + position.coords.latitude + "&long=" + position.coords.longitude,
		success: function(answer) {
		}
	});

	/**/
	p = document.getElementById("location");
	p.innerHTML = "<table border='1'><tr><th>Helyi idő</th><td>"+ position.timestamp +
	"<tr><th>Szélesség (WGS84)</th><td>" + position.coords.latitude + " deg</td></tr>" +
	"<tr><th>Hosszúság (WGS84)</th><td>" + position.coords.longitude + " deg</td></tr></table>";
	/**/
}

function displayError(positionError) {
  //alert("error")
}

try {
  if(typeof(navigator.geolocation) == 'undefined'){
    gl = google.gears.factory.create('beta.geolocation');
  } else {
    gl = navigator.geolocation;
  }
}catch(e){}

if (gl) {
  gl.getCurrentPosition(displayPosition, displayError);
}
