function checkquick(thisForm){
	var x=document.form1
	
	txtK=x.textfield.value

	detailed=document.forms[0].detailed
	

	submitOK="true"
	if(txtK.length == 0 || txtK.substr(0,1) == " ")
	{
		if(txtK.length == 0)
		{
			alert("You must enter a Keyword to search by....")
		}
		else
		{
			alert("The first character may not be a space in Keyword....")

		}
		document.forms[0].textfield.focus()
		submitOK="False"
	}
	
	else
	{		

		x.method="POST"
		x.action="../cgi-bin/TerrexSearchResults.asp"
	}
	if (submitOK=="False")
	{
		return false
	}
}

