// Start Form Check
	function validEmail(inEmail) {
		invalidChars = "/:,;"
		if (inEmail == "") {
			return false; }
		for (i=0; i<invalidChars.length; i++) {
			badChar = invalidChars.charAt(i)
			if (inEmail.indexOf(badChar,0) > -1) {
				return false; }
			}
			atPos = inEmail.indexOf("@",1)
			if (atPos == -1) {
				return false; }
			if (inEmail.indexOf("@",atPos+1) > -1) {
				return false; }
			periodPos = inEmail.indexOf(".",atPos)
			if (periodPos == -1) {
				return false; }
			if (periodPos+3 > inEmail.length) {
				return false; }
			else {
				return true; }
	}
	
function validForm(contact) {
	
		if (contact.companyname.value == "") {
			alert("Please enter the name of your company.")
			contact.companyname.focus()
			return false; }
		if (contact.url.value == "") {
			alert("Please enter your companys web address.")
			contact.url.focus()
			return false; }	
		if (contact.contacename.value == "") {
			alert("Please enter a contact name")
			contact.contacename.focus()
			return false; }	
		if (contact.email.value == "") {
			alert("Please enter your e-mail address")
			contact.email.focus()
			return false; }
		if (!validEmail(contact.email.value)) {
			alert("Please enter a valid e-mail address")
			contact.email.focus()
			return false; }
		if (contact.besttime.value == "") {
			alert("When is the best time to reach you?")
			contact.besttime.focus()
			return false; }
		if (contact.area.value == "") {
			alert("Please enter your area code")
			contact.area.focus()
			return false; }
		if (contact.prefix.value == "") {
			alert("Please enter your prefix")
			contact.prefix.focus()
			return false; }
		if (contact.suffix.value == "") {
			alert("Please enter your phone's suffix")
			contact.suffix.focus()
			return false; }				
		if (contact.how.value == "") {
			alert("How did you find me?")
			contact.how.focus()
			return false; }
			}
//-->