// JavaScript Document
function addLoadEvent(func) { 
	var oldonload = window.onload; 
	if (typeof window.onload != 'function') { 
		window.onload = func; 
	} else { 
		window.onload = function() { 
			if (oldonload) { 
				oldonload(); 
			} 
			func(); 
		} 
	} 
}

function initialize() {
	if (GBrowserIsCompatible()) {
        var map = new GMap2(document.getElementById("GoogleMapDiv"));
        map.setCenter(new GLatLng(51.5510160, -0.6158710), 13);
        map.setUIToDefault();
		var point = new GLatLng(51.55531160, -0.6151710);
		map.openInfoWindow(point, document.createTextNode("Apex Sports"));
//		directions = new GDirections(map, document.getElementById("GoogleDirectionsDiv"));

    }
	
}

//function getdirections(fromlocation) {
//	var direction = "from: "+fromlocation+", UK to: Beaconsfield Road, Farnham Common, Buckinghamshire, SL2 3";
//	alert(direction);
//	directions.load(direction);
//}
