function checkField() {

	if ((theForm.txtBusinessType.value == "") || (theForm.txtBusinessType.value == " "))
				{ alert("You must enter a Business Type"); return false; }
	else { return true; }	
}

function Focus()
{
    document.theForm.txtBusinessType.focus(); 
}