function cursor() {
	if(document.TheForm.name.value=" ") {
	document.TheForm.name.focus(); return false
	}
	}	
function theCheckup() {	
if ( document.TheForm.name.value==" " ) { 
	alert ("OK, you need to include your name in this form")
	document.TheForm.name.focus(); return false
	}
if (document.TheForm.email.value!=" ") { 
	if ( document.TheForm.email.value.indexOf ("@")==-1 || document.TheForm.email.value.indexOf(".")==-1 || document.TheForm.email.value.indexOf(" ")!=-1  || document.TheForm.email.value.length<6)
	{ alert ("Fill in your email address ~ correctly!")
	document.TheForm.email.focus(); return false 
	} 
	}
if (document.TheForm.phone.value=="") {
	alert ("May we have your phone number?")
	document.TheForm.phone.focus(); return false
	}
if (document.TheForm.TextBox.value=="Type your message here...") {
	alert ("Do you have words of wisdom for us? Type it in the box!")
	document.TheForm.TextBox.value=" "
	document.TheForm.TextBox.focus(); return false 
	}
if (document.TheForm.TextBox.value!=" ") {
	location.href="wp_submission.html" }
	}