function sandpiper(form) {
  	var street = form.street.value;
  	var city = form.city.value;
  	var state = form.state.value;
  	var zip = form.zip.value;
  	var destin = "&daddr=1600+Ocean+Ave+Wildwood+NJ+08260+(Sandpiper+Motel)&hl=en"
  	var newUrl = "http://maps.google.com/maps?saddr=" + street + "+" + city + "+" + state + "+" + zip + "+" + destin + "&ie=UTF8&z=11&om=0&pw=2";
  	newUrl = newUrl.replace(/ /g, "+");
  	if (city != '' && state != '' || zip != '') {
		window.open(newUrl);
	} else {
		alert('Please enter a City and State or Zip.');
	}
	return;
}

