var centerLatitude = 53.553407;
var centerLongitude = 9.992196;
var startZoom = 11;
var map;



function init()
{
  if (GBrowserIsCompatible()) {
    map = new GMap2(document.getElementById("map"));
    map.addControl(new GSmallMapControl());
    map.setCenter(new GLatLng(centerLatitude,
                      centerLongitude), startZoom);

   
  }
}

window.onload = init;
window.onunload = GUnload;