<!--

// Function to validate the form.

function FormValidation(theForm) {

	if (theForm.fullname.value == "") {

		alert("Enter your Contact Name.");

		theForm.fullname.focus();

		return false; }

//	if (theForm.title.value == "") {

//		alert("Enter your Job Title.");

//		theForm.title.focus();

//		return false; }

//	if (theForm.company.value == "") {

//		alert("Enter your Company Name.");

//		theForm.company.focus();

//		return false; }

	if (theForm.email.value == "") {

		alert("Enter your E-mail Address.");

		theForm.email.focus();

		return false; }	

	if (theForm.addressone.value == "") {

		alert("Enter your Address.");

		theForm.addressone.focus();

		return false; }

	if (theForm.city.value == "") {

		alert("Enter your City.");

		theForm.city.focus();

		return false; }

	if (theForm.state_or_province.value == "") {

		alert("Enter your State.");

		theForm.state_or_province.focus();

		return false; }

	if (theForm.zip.value == "") {

		alert("Enter your Zip Code.");

		theForm.zip.focus();

		return false; }

	if (theForm.country.value == "") {

		alert("Enter your Country.");

		theForm.country.focus();

		return false; }



	if (theForm.phone.value == "") {

		alert("Enter your Telephone Number.");

		theForm.phone.focus();

		return false; }

	if (theForm.comments.value == "") {

		alert("Enter your Comments.");

		theForm.comments.focus();

		return false; }

		

	return (true);

}

//-->
