
GMaps = {};

if((window.location.host=='ursynow.waw.pl') || (window.location.host=='www.ursynow.waw.pl')){
GMaps.KEY = 'ABQIAAAATKe7yaEXc_3In1Gjwq-5vBR41WJK8GkkvdvcJU4w2q7ILgm5OhTXgwzxnjKPE_xMX7LMXCqiQ-Nolg'; 
}else if((window.location.host=='ursynow.pl') || (window.location.host=='www.ursynow.pl')){
GMaps.KEY = 'ABQIAAAATKe7yaEXc_3In1Gjwq-5vBR7WlGOe_cXSXR9OKFNuvV0hsOl4BS3Pjb2GAKdkyogz52pxVmEcQBfyA'; 
}
//console.dir(window.location.host);


GMaps.position = {
		  X: 52.1378544
		, Y: 21.0291229
	};

//console.dir(GMaps.position);

GMaps.ZOOM = 13;

GMaps.loadGLib = function(callback){
	//alert(callback);
	var script = document.createElement('script');
	script.setAttribute('src', 'http://maps.google.com/maps?file=api&v=2&sensor=false&key='
	+ GMaps.KEY + '&async=2&callback=' + callback);
	script.setAttribute('type', 'text/javascript');
	document.documentElement.firstChild.appendChild(script);
	document.getElementsByTagName('body')[0].setAttribute('onunload', 'GUnload()');
};