  //Google map can be more customized:
  //For more INFO: http://code.google.com/apis/maps/documentation/introduction.html#Loading_the_Maps_API
  
  window.onload = showMap;
    function showMap()
{
    var map = new GMap(document.getElementById("map"));
    map.setMapType(G_NORMAL_MAP);
    
    map.centerAndZoom(new GPoint(54.3943942, 24.4348427), 3);
    map.openInfoWindow(map.getCenter(),
                   document.createTextNode("The Elite Private School"));
    map.setUIToDefault();
    
}