function init_map(){
var myOptions = {
zoom:13,
center:new google.maps.LatLng(22.2866614,114.19173840000008),
mapTypeId: google.maps.MapTypeId.ROADMAP};
map = new google.maps.Map(document.getElementById('gmap_canvas'),
myOptions
);
marker = new google.maps.Marker({map: map,position: new google.maps.LatLng(22.2866614,114.19173840000008)});
infowindow = new google.maps.InfoWindow({content:' FBA China Sourcing
Office 1202B, 148 Electric Road, Hong Kong
'});
google.maps.event.addListener(marker, 'click',
function(){infowindow.open(map,marker);});infowindow.open(map,marker);}
google.maps.event.addDomListener(window, 'load', init_map);