function GoGoGoogleMaps(jumptolocation){
	var whereto = jumptolocation;
	var wheretoSplit = whereto.split(" ");
	for(var x = 0; x <= 10; x++){
		if(wheretoSplit[x] == null){
			var maxIndex = (x - 1);
			break;
		};
	};
	var url = "http://maps.google.com/maps?f=q&hl=en&geocode=&q=";
	for(var x = 0; x <= maxIndex; x++){
		if(x == 0){
			url = url + wheretoSplit[x];
		}else{
			url = url + "+" + wheretoSplit[x];
		};
	};
	location.href=url;
	return false;
}