function createTabbedMarker(point,html1,html2,label1,label2,moptions, iconpath) {
	var micon=new GIcon(G_DEFAULT_ICON);
	micon.image=iconpath;
	micon.iconSize=new GSize(17,22);
	var marker = new GMarker(point,micon);
 	GEvent.addListener(marker, "click", function() {
		marker.openInfoWindowTabsHtml([new GInfoWindowTab(label1,html1), new GInfoWindowTab(label2,html2)], moptions);
	});
	return marker;
}

function bic_centermap(longitude, latitude, zoom, letter){
	longitude+=0.0039;
//	gtm[letter].initialize(map);
	map.setCenter(new GLatLng(longitude, latitude),zoom);
	GEvent.trigger(gtm[letter], "click");
}