

//clears the search box in the template
function ClearSearchBox()
{
	var box = document.getElementById("txtKeyword");
	
	if(box != null)
	{
		box.value = "";
	}
}
