// Copyright Thaxton Insurance.  All rights reserved

function checkForm()
{

	if (document.contact_right.name.value  == "" || /^\s+$/.test(document.contact_right.name.value))
	{
		alert ("Please tell us your name - first (space) last")
		document.contact_right.name.focus()
		return false
	}

	if (document.contact_right.phone.value == "")
	{
		alert ("Please tell us your 10 digit phone number in case we need to call you about your order")
		document.contact_right.phone.focus()
		return false
	}

	if (document.contact_right.time.value == "0")
	{
		alert ("Please choose a time that's best to contact you")
		document.contact_right.time.focus()
		return false
	}

	return true
}



