function loadGEO(photoid) {
	var oImg = document.getElementById(photoid);
	
	if(EXIF.getTag(oImg, "GPSDestLatitude")) {
		
		alert(EXIF.getTag(oImg, "GPSDestLatitude")));
		var pLat = EXIF.getTag(oImg, "GPSLatitude");
		var pLng = EXIF.getTag(oImg, "GPSLongitude");
		var pLatRef = EXIF.getTag(oImg, "GPSLatitudeRef") || "N";
		var pLngRef = EXIF.getTag(oImg, "GPSLongitudeRef") || "W";
		var fLat = (pLat[0] + pLat[1]/60 + pLat[2]/3600) * (pLatRef == "N" ? 1 : -1);
		var fLng = (pLng[0] + pLng[1]/60 + pLng[2]/3600) * (pLngRef == "W" ? -1 : 1);
		
		location.href = "http://maps.google.ch/?q=" + fLat + "," + fLng + "&t=h";
		
	}

}