﻿var globalInfowindow;var arrayInfoWindow= new Array();function setMarkersByAddress(map,geocoder,address,iconImage,shadowImage,shapeImage,titleMap,popupContent,onloadPopUpContent,sortOrder,linkID){geocoder["geocode"]({"address":address},function (results,status){if(status==google["maps"]["GeocoderStatus"]["OK"]){map["setCenter"](results[0]["geometry"]["location"]);var marker= new google["maps"].Marker({map:map,position:results[0]["geometry"]["location"],shadow:shadowImage,icon:iconImage,shape:shapeImage,title:titleMap,zIndex:sortOrder});globalInfowindow= new google["maps"].InfoWindow({content:popupContent});if(popupContent!=""){google["maps"]["event"]["addListener"](marker,"click",function (){globalInfowindow["open"](map,marker);arrayInfoWindow["push"](globalInfowindow);} );if(linkID!=""){obj=document["getElementById"](linkID);if(obj){obj["onclick"]=function (){closeInfoWindows();map["setCenter"](results[0]["geometry"]["location"]);globalInfowindow["open"](map,marker);} ;} ;} ;} ;if(onloadPopUpContent&&sortOrder==0){globalInfowindow["open"](map,marker);arrayInfoWindow["push"](globalInfowindow);} ;} ;} );} ;function closeInfoWindows(){for(var i=0;i<arrayInfoWindow["length"];i++){arrayInfoWindow[i]["close"]();} ;} ;function setMarkersByLongitudeLatitude(map,geocoder,address,latitude,longitude,iconImage,shadowImage,shapeImage,titleMap,popupContent,onloadPopUpContent,sortOrder,linkID){var myLatLng= new google["maps"].LatLng(latitude,longitude);var marker= new google["maps"].Marker({position:myLatLng,map:map,shadow:shadowImage,icon:iconImage,shape:shapeImage,title:titleMap,zIndex:sortOrder});globalInfowindow= new google["maps"].InfoWindow({content:popupContent});if(popupContent!=""){google["maps"]["event"]["addListener"](marker,"click",function (){globalInfowindow["open"](map,marker);arrayInfoWindow["push"](globalInfowindow);} );if(linkID!=""){obj=document["getElementById"](linkID);if(obj){obj["onclick"]=function (){closeInfoWindows();map["setCenter"](myLatLng);globalInfowindow["open"](map,marker);} ;} ;} ;} ;if(onloadPopUpContent&&sortOrder==0){globalInfowindow["open"](map,marker);arrayInfoWindow["push"](globalInfowindow);} ;} ;
