<!--
function location_detail_button(x_button)
{
	if (x_button == 'save')
	{
		// Ensure that all required fields have been completed...
		if(!location_detail_validate_data())
			return false;
	
		var qry = 'modules/location/location_summary.php';
		qry += '?mode=update';
		
		qry += '&return_id='				+ document.getElementById('location_id').value;
		
		qry += '&location_id='				+ document.getElementById('location_id').value;
		qry += '&location_name='			+ document.getElementById('location_name').value;
		qry += '&location_state_id='		+ document.getElementById('location_state_id').value;
		qry += '&location_status_id='		+ document.getElementById('location_status_id').value;
		qry += '&location_notes='			+ document.getElementById('location_notes').value;
	
		ajaxFunction(qry,'ajax_body');
		return false;
	}
}

function location_detail_validate_data()
{
	if (!isEmpty('location_name', 'Please enter a Name'))
		return false;

	if (!isSelected('location_state_id', 'Please select a State'))
		return false;
	
	return true;
}
-->

