document.getElementById('hotels_geo').style.display = 'none';

if (navigator.geolocation)
{
	navigator.geolocation.getCurrentPosition(
		function(position)
		{
			var text = document.getElementById('hotels_geo').innerHTML;
			document.getElementById('hotels_geo').innerHTML     = '<a href="/hotels_near_me.html?GEO_LON=' + position.coords.longitude + '&amp;GEO_LAT=' + position.coords.latitude +'">' + text + '</a>';
			document.getElementById('hotels_geo').style.display = 'list-item';
		},
		function(PositionError)
		{
		}
	);
}
