
function showResponse(req)
{
	$('show').innerHTML= req.responseText;
}

google.load("maps", "2.x");

function locate()
{
	var loc = google.loader.ClientLocation;
	if (loc != null)
	{
		new Ajax.Request("index.php?page=stat", 
		{ 
			method: 'post', 
			postBody: 'latitude='+loc.latitude+'&longitude='+loc.longitude+'&city='+loc.address.city+'&region='+loc.address.region+'&country='+loc.address.country+'&country_code='+loc.address.country_code,
			onComplete: showResponse 
		});
		window.location.href = 'index.php';
		//document.getElementById("url").href = "http://maps.google.com/maps/ms?ie=UTF8&hl=hu&msa=2&ll="+loc.latitude+","+loc.longitude+"&spn=0.083412,0.22316&z=14";
	}
}

google.setOnLoadCallback(locate);
