function initialize() { 

var latlng = new google.maps.LatLng(52.8699,-1.0903);
var myOptions = {
 zoom: 15, 
 center: latlng, 
 scaleControl: true,  
 mapTypeControl: false,  
 navigationControl: true,  
 mapTypeId: google.maps.MapTypeId.ROADMAP
};

map = new google.maps.Map(document.getElementById("map_canvas"), myOptions); 

var image = new google.maps.MarkerImage('images/marker_blank.png',      
// This marker is 20 pixels wide by 32 pixels tall.
new google.maps.Size(20, 34), 
// The origin for this image is 0,0.   
new google.maps.Point(0, 0),
// The anchor for this image is the base of the marker at 9,32.
new google.maps.Point(9, 32));

var myLatLng = new 	google.maps.LatLng(52.8699,-1.0903);
var marker = new google.maps.Marker({
position: myLatLng,
map: map,        
icon: image,      
title: "Triton Technology Ltd"      
    });
	
}


	