﻿// JavaScript Document
var map;
var superPoint;
function initialize() {
if (GBrowserIsCompatible()) {
map = new GMap2(document.getElementById("ggmap") );
map.setCenter(new GLatLng(tx_lat, tx_lng), tx_ZoomLevel, G_HYBRID_MAP);
map.addControl(new GLargeMapControl());
map.addControl(new GMapTypeControl());
map.addControl(new GScaleControl());
      var WINDOW_HTML = '<div style="width:300px;height:150; padding-right: 10px"><b>China Yiwu - Commodity City</b> <img src="http://lh6.ggpht.com/dingdu8/SHgaLfXMX8I/AAAAAAAAAko/dOy9F9PypEk/International%20Trade%20City.JPG?imgmax=150"><br /><a href="http://www.yiwuchina.org/info/Yiwu-intro/Yiwuintro.html" target=_blank>Yiwu intro</a> <a href="http://www.yiwuchina.org/info/article/Yiwu-photo.html" target=_blank>Yiwu Photo</a>  <a href="http://www.yiwuchina.org/info/article/Yiwu-video.html" target=_blank>Yiwu video</a> <a href="http://www.yiwuchina.org/info/article/Yiwu-fair.html" target=_blank>Yiwu Fair</a> <a href="http://www.yiwuchina.org" target=_blank>Yiwu Company</a></div>'
	  var marker = new GMarker(new GLatLng(tx_lat, tx_lng));
      map.addOverlay(marker);
      GEvent.addListener(marker, "click", function() {
        marker.openInfoWindowHtml(WINDOW_HTML);
      });
      marker.openInfoWindowHtml(WINDOW_HTML);
	 }
return true;
}

