function load() {
 if (GBrowserIsCompatible()) { 
var map = new GMap2(document.getElementById("map"));
map.addControl(new GSmallMapControl());
map.addControl(new GMapTypeControl());
map.setCenter(new GLatLng(52.373156, -2.228842), 10);

map.addOverlay(marker = new GMarker(new GLatLng(52.373156, -2.228842)));
marker.openInfoWindowHtml("<b>Beauteal Cotons Location</b><br/>7 Teal Crescent<br/>Kidderminster<br/>Worcestershire<br/>DY10 4ET<p/>");
GEvent.addListener(marker, "click", function() {marker.openInfoWindowHtml("<b>Beauteal Cotons Location</b><br/>7 Teal Crescent<br/>Kidderminster<br/>Worcestershire<br/>DY10 4ET<p/>");});
var icon = new GIcon();
icon.image = "http://labs.google.com/ridefinder/images/mm_20_blue.png";
icon.shadow = "http://labs.google.com/ridefinder/images/mm_20_shadow.png";
icon.iconSize = new GSize(12, 20);
icon.shadowSize = new GSize(22, 20);
icon.iconAnchor = new GPoint(6, 20);
icon.infoWindowAnchor = new GPoint(5, 1);
map.addOverlay(junc2 = new GMarker(new GLatLng(52.492703, -2.018919),icon));
GEvent.addListener(junc2, "click", function() {junc2.openInfoWindowHtml("M5 Junction 2");});

map.addOverlay(junc3 = new GMarker(new GLatLng(52.449261, -2.015017),icon));
GEvent.addListener(junc3, "click", function() {junc3.openInfoWindowHtml("M5 Junction 3");});
map.addOverlay(junc4 = new GMarker(new GLatLng(52.378842, -2.046333),icon));
GEvent.addListener(junc4, "click", function() {junc4.openInfoWindowHtml("M5 Junction 4");});
map.addOverlay(junc4a = new GMarker(new GLatLng(52.353972, -2.069619), icon));
GEvent.addListener(junc4a, "click", function() {junc4a.openInfoWindowHtml("M5 Junction 4a");});
map.addOverlay(junc5 = new GMarker(new GLatLng(52.288636, -2.120628),icon));
GEvent.addListener(junc5, "click", function() {junc5.openInfoWindowHtml("M5 Junction 5");});

 }else{
document.write('Google map is not compatible with your setup, please use the other contact details available.');
}
 } 
