window.onload = function() {init()};
window.onunload = function() {destruct()};
google.load("maps", "2.x");

var map;

function init()
{
    // create the map
    if (GBrowserIsCompatible()) {
        map = new google.maps.Map2(document.getElementById("shop_map"));
        //map.addControl(new GMapTypeControl());
        map.addControl(new google.maps.SmallZoomControl());
        map.setCenter(new google.maps.LatLng(63.15436, 15.73242), 4);
    }
}

function destruct()
{
    GUnload();
}

function show_location(lat, lng)
{
    map.clearOverlays();
    map.addOverlay(new google.maps.Marker(new GLatLng(lat, lng)));
    map.setCenter(new google.maps.LatLng(lat, lng), 12);
}
