var http=getHTTPObject();function geoCodeLocName(locName){var url='geoCode.do?name='+locName+','+cityNameMapper[cityId]+"&timeStamp="+getTimeStamp();http.open("GET",url,true);http.onreadystatechange=handleGeoResponse;http.send(null);}
function handleGeoResponse(){if(http.readyState==4){if(http.status==200){var coord=http.responseText;if(coord=="NotFound"){map.openInfoWindow(map.getCenter(),"Location name entered not found. Please check the spelling entered or select the location manually");}
else
{var lat=coord.substring(0,coord.indexOf(","));var lng=coord.substring(coord.indexOf(",")+1,coord.length);map.setCenter(new GLatLng(lat,lng));map.setZoom(14);}}
else{alert("We are sorry! Unable to retrieve co-ordinates from google maps. Please try again in a while :( ");}}}
function getHTTPObject(){var xmlhttp;if(window.XMLHttpRequest){xmlhttp=new XMLHttpRequest();}else if(window.ActiveXObject){xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");}
return xmlhttp;}