function comboBox(page){
	if(page!=""){
	window.open(page,"_self")
	}
}

//<![CDATA[

function load() {
	if (GBrowserIsCompatible()) {
		var map = new GMap2(document.getElementById("map"));
		//var geocode = new GClientGeocoder();
		//45.459845,-73.700924
		//map.setCenter(new GLatLng(45.460266,-73.705323), 13);
		map.setCenter(new GLatLng(45.466452,-73.726587),13);
		txtlocation="<b>GGI International</b><br>1455 32E AVENUE<br>LACHINE, QC H8T 3J1<br>Canada<br>(514) 631-6662";
		//map.openInfoWindowHTML(txtlocation)

		map.addControl(new GSmallMapControl());
		map.addControl(new GMapTypeControl());
		var marker = new GMarker(new GLatLng(45.460266,-73.705323));
		//marker.openInfoWindowHtml(txtlocation);
		GEvent.addListener(marker, "click", function() {
			marker.openInfoWindowHtml(txtlocation);
		});
		map.addOverlay(marker);
	}
}

    //]]>