// ==UserScript==
// @name          Google Maps Locations Inserter v .0.0.0.01
// @namespace     http://gdorn.nudio.net/greasemonkey
// @description		Load Points into Google Maps from a Remote file
// @include       http://maps.google.com/*
// @include				http://*.housingmaps.com/*
// ==/UserScript==

(function () {
/*
function loadPoints() {
	loc = location.href.substring(location.href.indexOf('loc=')+4);
	GM_xmlhttpRequest({
	 method:"GET",
       url:loc,
	 onload:function(details) {
		_m.loadXML(details.responseText, window.document);
	 }
	});
}
*/
if (location.href.indexOf('insert') != -1) {
	alert("Running!");
	var m = _m.map;
	var point = GPoint("42.2056", "-72.609");
	GMarker(point);
	_c09.centerAndZoom(new GPoint(-122.141944, 37.441944), 4);
}

})();