Google = {};

Google.zoom = function(map,zoom_level)
{
	var time = tim;

	window.setTimeout(function(){
		map.setZoom(zoom_level);
	},time);
}

Google.animateTo = function(map,point_1,point_2)
{
	var time = tim;
	tim += 500;

	window.setTimeout(function(){
		map.setCenter(new GLatLng(point_1, point_2));
		//map.panTo(new GLatLng(point_1, point_2));
	},time);
	
}

Google.showWojewodztwo = function(map,x,y){
	Google.animateTo(map,x,y);
	Google.zoom(map,7);
}
Google.showCity = function(map,x,y){
	Google.animateTo(map,x,y);
	Google.zoom(map,12);
}
Google.showPoland = function(map){
	Google.animateTo(map,'52.12','19.138184');
	Google.zoom(map,6);
} 

function doieg(text){
	var tablica = text.split(';');
	if(tablica[0].length != 0)
	{
		eval(tablica[0]);
	}	
	if(tablica[1].length != 0)
	{	
		eval(tablica[1]);
	}
}

