function SearchHandler(elm) {
	if (elm.value != '') {
		location.href = '/global/SearchResult.aspx?search=' + encodeURIComponent(elm.value);
		return false;
	}
	return true;
}
