function postForm()
{
	var form = document.getElementById("aspnetForm");
	form.action = "/search--browse/result?searchString=" + document.getElementById("searchString").value;
	form.submit();
}

