<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
		<html xmlns="http://www.w3.org/1999/xhtml">
		<head>
		<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
		<title>Sample</title>
		<style type="text/css"><!--
		html, body, #gmap {
		 margin:0;
		 padding:0;
		 width:100%;
		 height:100%;
		}
		html {
		 overflow:hidden;
		}
		--></style>
		<script src="http://maps.google.com/maps?file=api&v=2&key=ABQIAAAAasAJryKxWJnBFVJa487d9hTHGAxTVT7IRADYa-JdYz7xQ8IQZBSthgDZdggYpQHsmm6WYtHstQFfLA" type="text/javascript"></script>
		<script type="text/javascript">
		//<![CDATA[
		 var mapX = 137;
		 var mapY = 36;
		 window.onload = function() {
		  map = new GMap2(document.getElementById("gmap"));
		  map.setCenter(new GLatLng(mapY, mapX), 6);
		  bounds = map.getBounds();
		 }
		 window.onresize = function() {
		  map.checkResize();
		  var zoom = map.getBoundsZoomLevel(bounds);
		  map.setCenter(new GLatLng(mapY, mapX), zoom);
		 }
		//]]>
		</script>
		</head>
		<body>
		<div id="gmap"></div>
		</body>
		</html>