function createPolyline (Coordinates,bounds) {
	
	polyline = new google.maps.Polyline({
	path: Coordinates,
	strokeColor: "#000000",
	strokeOpacity: 1.0,
	strokeWeight: 2
	});

	polyline.setMap(map);


	map.fitBounds(bounds);                        
}

function createPolygon (Coordinates,bounds) {

	polygon = new google.maps.Polygon({
	path: Coordinates,
	strokeColor: "#000000",
	strokeOpacity: 1.0,
	strokeWeight: 2
	});
	

	polygon.setMap(map);
	
	map.fitBounds(bounds);
	//map.setCenter(bounds.getCenter(), map.getBoundsZoomLevel(bounds));
                    
}
