function getMap(latitude, longitude, zoom) {     
var latlng = new google.maps.LatLng(latitude,longitude);     
var myOptions = { 
	zoom: zoom, 
	center: latlng, 
	scrollwheel: false,
	mapTypeId: google.maps.MapTypeId.ROADMAP    
  } ;
var map = new google.maps.Map(document.getElementById("mapCanvas"), myOptions);  
	var latlng = new google.maps.LatLng(latitude,longitude);
	var image = 'images/arc.png'; 	
    var marker = new google.maps.Marker({     
	position: latlng,       
	map: map,       
	icon: image   
	});
}

function SelectAll()
{
document.getElementById(q).focus();
document.getElementById(q).select();
}
