// JavaScript Document
//<![CDATA[

var map = new GMap(document.getElementById("map"));
map.addControl(new GSmallMapControl());
map.addControl(new GMapTypeControl());
map.addControl(new GScaleControl());
map.setCenter(new GLatLng(53.479759,-2.234516),15, G_NORMAL_MAP)

// Creates a marker whose info window displays the given number
function createMarker(point, number)
{
	var marker = new GMarker(point);
	// Show this markers index in the info window when it is clicked
	var html = number;
	GEvent.addListener(marker, "click", function() {marker.openInfoWindowHtml(html);});
	return marker;
};
	
var point = new GLatLng(53.479759,-2.234516);
var marker = createMarker(point, '<strong>Click Results</strong><br />1 Portland Street<br />Manchester<br />M1 3BE');
map.addOverlay(marker);

//]]>