function load() {
      if (GBrowserIsCompatible()) {
        var map = new GMap2(
        document.getElementById("map"));
        map.addControl(new GSmallMapControl());
        var bounds = new GLatLngBounds(new GLatLng(document.getElementById("minLat").innerHTML,document.getElementById("minLong").innerHTML),new GLatLng(document.getElementById("maxLat").innerHTML,document.getElementById("maxLong").innerHTML));
        map.setCenter(bounds.getCenter());
        
        map.setZoom(map.getBoundsZoomLevel(bounds));
        function createMarker(point, text, title, letter) {
          if (letter=='undefined' || letter=='') {
          	var icon = new GIcon(G_DEFAULT_ICON,"/img/markers/marker_small.png");
      
          	icon.iconSize = new GSize(11, 17);
          	icon.shadowSize = new GSize(22, 17);
          	icon.iconAnchor = new GPoint(6, 17);
          	icon.infoWindowAnchor = new GPoint(5, 1);         	
          	         	
          } else {
          		var icon = new GIcon(G_DEFAULT_ICON,"/img/markers/marker_" + letter + ".png");
          	icon.iconSize = new GSize(21, 29);      
          	icon.shadowSize = new GSize(40, 29);
          	icon.iconAnchor = new GPoint(11, 29);  	
          }
          
          var marker =
          new GMarker(point,{icon:icon,title:title});
          marker.bindInfoWindowHtml(text);
          return marker;
        }
        geo=$('.geo');
        titles=$('.title');
	html=$('.html');

        for ( var i=0;i<geo.length;i=i+1)
{
  
        var marker = createMarker(
        new GLatLng($('.latitude',geo[i])[0].innerHTML,$('.longitude',geo[i])[0].innerHTML),
        
        html[i].innerHTML,
        titles[i].innerHTML,
        $('.letter',geo[i])[0].innerHTML);
        map.addOverlay(marker);
  }
      }
    }
function loadBig() {
      if (GBrowserIsCompatible()) {
        var map = new GMap2(
        document.getElementById("map"));
        map.addControl(new GSmallMapControl());
        var bounds = new GLatLngBounds(new GLatLng(document.getElementById("minLat").innerHTML,document.getElementById("minLong").innerHTML),new GLatLng(document.getElementById("maxLat").innerHTML,document.getElementById("maxLong").innerHTML));
        map.setCenter(bounds.getCenter());
        
        map.setZoom(map.getBoundsZoomLevel(bounds));
        function createMarker(point, text, title, premium) {
          	if (premium=='1') {
          	var icon = new GIcon(G_DEFAULT_ICON,"/img/markers/marker_plain.png");
          	icon.iconSize = new GSize(21, 29);   
          	icon.iconAnchor = new GPoint(11, 29);  	 
          	icon.shadowSize = new GSize(40, 29);     	
          	} else {
          	var icon = new GIcon(G_DEFAULT_ICON,"/img/markers/marker_small.png");
          	icon.iconSize = new GSize(11, 17);
          	icon.shadowSize = new GSize(22, 20);
          	icon.iconAnchor = new GPoint(6, 17);
          	icon.infoWindowAnchor = new GPoint(5, 1);     
          	}    	
          	         	
          var marker =
          new GMarker(point,{icon:icon,title:title});
          marker.bindInfoWindowHtml(text);
          return marker;
        }
        geo=$('.geo');
        titles=$('.title');
	html=$('.html');

        for ( var i=0;i<geo.length;i=i+1)
{
  
        var marker = createMarker(
        new GLatLng($('.latitude',geo[i])[0].innerHTML,$('.longitude',geo[i])[0].innerHTML),
        
        html[i].innerHTML,
        titles[i].innerHTML,
        $('.premium',geo[i])[0].innerHTML);
        map.addOverlay(marker);
  }
      }
    }
