function doPersonSearch() {
	var searchValue = document.getElementById("txtRefered").value;

	window.location = "http://stories.mostimportantthing.com/Testimonies/SimpleSearch/" + searchValue;
}

function isEnter(e) {
	var characterCode;
	if (e && e.which) {
		characterCode = e.which;
	} else {
		e = event;
		characterCode = e.keyCode;
	}
	if (characterCode == 13) {
		doPersonSearch();
		return false;
	}
}
