<!--
function CheckEntries(ThisForm) {

if (ThisForm.company.value == "" || ThisForm.company.value == null) {
	alert("Please enter your \"Company Name\".");
	ThisForm.company.focus();
	return (false);
	}
if (ThisForm.name.value == "" || ThisForm.name.value == null) {
	alert("Please enter your \"Name\".");
	ThisForm.name.focus();
	return (false);
	}
if (ThisForm.shipto1.value == "" || ThisForm.shipto1.value == null) {
	alert("Please enter your \"Ship to Address.\".");
	ThisForm.shipto1.focus();
	return (false);
	}
if (ThisForm.city.value == "" || ThisForm.city.value == null) {
	alert("Please enter your \"Ship to City.\".");
	ThisForm.city.focus();
	return (false);
	}
if (ThisForm.state.value == "" || ThisForm.state.value == null) {
	alert("Please enter your \"Ship to State.\".");
	ThisForm.state.focus();
	return (false);
	}
if (ThisForm.zip.value == "" || ThisForm.zip.value == null) {
	alert("Please enter your \"Ship to Zip Code.\".");
	ThisForm.zip.focus();
	return (false);
	}
if (ThisForm.phone_area.value == "" || ThisForm.phone_area.value == null) {
	alert("Please enter your \"Complete Phone Number\".");
	ThisForm.phone_area.focus();
	return (false);
	}
if (ThisForm.phone1.value == "" || ThisForm.phone1.value == null) {
	alert("Please enter your \"Complete Phone Number\".");
	ThisForm.phone1.focus();
	return (false);
	}
if (ThisForm.phone2.value == "" || ThisForm.phone2.value == null) {
	alert("Please enter your \"Complete Phone Number\".");
	ThisForm.phone2.focus();
	return (false);
	}
if (ThisForm.email.value.indexOf ('@',0) == -1 || ThisForm.email.value.indexOf ('.',0) == -1) {
	alert("You are missing either a \"@\" or \".\" in your \"E-Mail Address\".\nPlease check and try again.");
	ThisForm.email.focus();
	return (false);
	}
}

function sf(){document.submission.company.focus();}
-->