function validate_form_add_property()
{
	if (document.add_property.street.value == '')
	{
		// something is wrong
		alert('Please Insert A Street');
		return false;
	}
	//else if (value of next field is or isn't something)
//	{
		// something else is wrong
	//	alert('There is a problem with...');
	//	return false;
	//}
	// If the script gets this far through all of your fields
	// without problems, it's ok and you can submit the form

	return true;
}


 // Google Maps Setup
 // On page load, call this function
   function load()
   {
      // Create new map object
      map = new GMap2(document.getElementById("map"));

      // Create new geocoding object
      geocoder = new GClientGeocoder();

      // Retrieve location information, pass it to addToMap()
      geocoder.getLocations(address, addToMap);
   }

   // This function adds the point to the map

   function addToMap(response)
   {
      // Retrieve the object
      place = response.Placemark[0];

      // Retrieve the latitude and longitude
      point = new GLatLng(place.Point.coordinates[1],
                          place.Point.coordinates[0]);

      // Center the map on this point
      map.setCenter(point, 16);

      // Create a marker
      marker = new GMarker(point);

      // Add the marker to map
      map.addOverlay(marker);
	
		// Add The Zoom Buttons
		map.addControl(new GSmallZoomControl3D());
   }


   function updateHighlight(filename)
   {
      // Retrieve the object
     document.getElementById('highlight_filename').value = filename;
	 alert('Highlight Photo Changed To: ' + filename + ' - (Click Save For Changes To Take Effect)');
   }



