﻿function searchText_onkeypress() {
	if(window.event.keyCode == 13) {
		doSearch();
		return false;
	}
	return true;
}
function doSearch() {
	var srch = document.getElementById("searchText");
	if(srch) {
		var srchTxt = srch.value;
		if (srchTxt.length > 0)
			if (typeof(AppPath) == "string")
				window.location.href = AppPath + "/search.aspx?srchTxt=" + srchTxt.replace(/\+/g, "*");
			else
				window.location.href = "/search.aspx?srchTxt=" + srchTxt.replace(/\+/g, "*");
	}
}