﻿
function fnSubmitSearch()
{
	var o = document.getElementById("txtSearch");
	if (o.value == "")
		return;
	
	location.href = sSearchUrl + "?q=" + escape(o.value) + "&p=1";
}