   function sendMailTo(name, company, domain) {
      locationstring = 'mai' + 'lto:' + name + '@' + company + '.' + domain;
      window.location.replace(locationstring);
   }
   
   
 	  
function initialize() {      
if (GBrowserIsCompatible()) {        
var map = new GMap2(document.getElementById("map_canvas"));        
map.setCenter(new GLatLng(51.418265, -0.443401), 13);         
map.setUIToDefault();
var bounds = map.getBounds();  
var point = new GLatLng(51.418265, -0.443401); 
//var marker1 = createMarker(new GLatLng(51.39792, -1.17828), "WVC Self Drive");
//map.addOverlay(marker1);
map.addOverlay(new GMarker(point));  
}    
} 		  
		  
		  
		  
function popUp1(URL, Size) {
window.open(URL, 'new', Size);
}
function popUp2(URL) {
window.open(URL, 'new', 'width=320, height=480');
}

