// DO NOT TOUCH THIS CODE!
// Temporary fix for Google layers and OpenLayers 2.4.
// Customizable map code is below.
OpenLayers.Layer.Google.prototype.addContainerPxFunction=function() {
    if (typeof GMap2 != "undefined" && !GMap2.fromLatLngToContainerPixel) {
	        GMap2.prototype.fromLatLngToContainerPixel = function(gLatLng) {
            // first we translate into "DivPixel"
            var gPoint = this.fromLatLngToDivPixel(gLatLng);
            // locate the sliding "Div" div
            var div = this.getContainer().firstChild.firstChild;
            // adjust by the offset of "Div" and voila!
            gPoint.x += div.offsetLeft;
            gPoint.y += div.offsetTop;
            return gPoint;
        };  
    }   
};  
// You may now edit BELOW this line if necessary.
																														

var objOptions = {
//	minResolution: "auto",
//	minExtent: new OpenLayers.Bounds(-.0625, -.0625, .0625, .0625),
//	maxResolution: "auto",
//	maxResolution: .28125,
//	maxResolution: 1.40625/2,
	controls: []
//	tileSize: new OpenLayers.Size(512, 512)
};


function slfNewMap(strDivID){return new OpenLayers.Map(strDivID, objOptions);}

objFlags.MapLoaded = true;

