function load() {
      if (GBrowserIsCompatible()) {
        var map = new GMap2(document.getElementById("map"));
        map.setCenter(new GLatLng(51.4809, -0.3214), 14);
      }
}


function open_window(link,name,w,h) { //opens new window
	var win = "width="+w+",height="+h+",menubar=no,location=no,resizable=yes,scrollbars=yes";
	newWin = window.open(link,name,win);
	newWin.focus();
}

function open_full_window(link,name,w,h) { //opens new window
	var win = "width="+w+",height="+h+",menubar=yes,location=yes,resizable=yes,scrollbars=yes";
	newWin = window.open(link,name,win);
	newWin.focus();
}



