function ChangeTitle(NewTitle) {
  document.title = NewTitle;
}
function createMarker(point, html, icon) {
  var marker = new GMarker(point,icon);
                                                                                
  // Show this marker's index in the info window when it is clicked
  GEvent.addListener(marker, "click", function() {
    marker.openInfoWindowHtml(html);
  });
                                                                                
  return marker;
}
function _getInitialUrl() {
    var new_url = 'http://www.burbankmaps.com/burbank/index.js';
    var added = '?';
    if (c_start > 0) {
	new_url = new_url + added + 'c=' + c_start;
        added = '&';
    }
    var rppOffset = document.location.search.indexOf("rpp=") + "rpp=".length;
    if (rppOffset > 0) {
        new_url = new_url + added + 'rpp=' + document.location.search.substring(rppOffset);
        added = '&';
    }
    return new_url;
}
var redicon = new GIcon();
var blueicon = new GIcon();
blueicon.image = 'http://www.burbankmaps.com/bluemarker.png';
blueicon.iconSize = new GSize(20,34);
blueicon.shadow = 'http://www.burbankmaps.com/shadow50.png';
blueicon.shadowSize = new GSize(37,34);
redicon.image = 'http://www.burbankmaps.com/marker.png';
redicon.iconSize = new GSize(20,34);
redicon.shadow = 'http://www.burbankmaps.com/shadow50.png';
redicon.shadowSize = new GSize(37,34);
redicon.iconAnchor = new GPoint(0,0);
blueicon.iconAnchor = new GPoint(0,0);
redicon.infoWindowAnchor = new GPoint(10,10);
blueicon.infoWindowAnchor = new GPoint(10,10);

function ChangeMapDiv() {
  var mapdiv = document.getElementById("map");
  mapdiv.style.width = document.documentElement.clientWidth;
  mapdiv.style.height = document.documentElement.clientHeight;
}
//ChangeMapDiv();
function NextSet() {
  document.write('<scr' + 'ipt src="' + _getInitialUrl() + '" type="text/javascript"></scr' + 'ipt>');
}
NextSet();
