function changeMap(x,y,zoom,showInfo)
{
	$("#col_sx").html('');
	if (GBrowserIsCompatible()) {
		var map = new GMap2(document.getElementById("col_sx"),{ size: new GSize(560,525) } );
		map.setCenter(new GLatLng(x,y), zoom);

		if (showInfo == true)
			map.openInfoWindowHtml(map.getCenter(), '<font color="#000000"><b>Next Paradise</b><br> Pwani Mchangani <br>  <a href="mailto:info@zanzibar.it" style="color:#000000">info@zanzibar.it</a></font>');

		var customUI = map.getDefaultUI();
		map.setMapType(G_HYBRID_MAP);
		map.setUI(customUI);
	}
}