
function Search(){
	var myTextField = document.getElementById('textfield');
	if(myTextField.value != "")
	{
	    window.location.href = "search.aspx?s="+myTextField.value
		//alert("You entered: " + myTextField.value)
	}
	else
	{
		//alert("Would you please enter some text?")		
	}
}

