//<![CDATA[

var map;
var icon1;
var icon2;
var marker;
var conten;

function map_view()
{

    map = new GMap(document.getElementById("map"));
    map.addControl(new GLargeMapControl());
    map.setCenter(new GLatLng(35.010877,135.7687), 12);

    icon1 = new GIcon();
    icon1.image = "/world/images/marker.png";
    icon1.iconSize = new GSize(12, 20);
    icon1.iconAnchor = new GLatLng(20, 6);
    icon1.infoWindowAnchor = new GLatLng(1, 6);
    icon2 = new GIcon();
    icon2.image = "/world/images/marker2.png";
    icon2.iconSize = new GSize(12, 20);
    icon2.iconAnchor = new GLatLng(20, 6);
    icon2.infoWindowAnchor = new GLatLng(1, 6);

    marker = Array();
    conten = Array();





}

function marker_click(n)
{
	marker[n].openInfoWindowHtml(conten[n]);
	return false;
}

//]]>
