﻿function searchKeywordsEqual(textField, txtValue) {
	var keywords = $$('.txtKeywords');
	keywords.each(function(child, index) {
		if (child.id != textField.id) {
			child.value = txtValue;
		}
	});
}
function searchLocationsEqual(textField, txtValue) {
	var locations = $$('.txtLocation');
	locations.each(function(child, index) {
		if (child != textField) {
			child.value = txtValue;
		}
	});
}
