
function ValidateContact()
	{
	with (document.contactform)
		{
		if (phone.value == "")
			{
			alert("Valid Phone Number Required");
			email.focus();
			return false;
			}
		else if (name.value == "")
			{
			alert("Valid Name Required");
			phone.focus();
			return false;
			}
		}
	return true;
	}
function ContactSent()
	{
	alert("Thank you for your order.\nYou will receive your order shortly.");
	}
function Contact1Sent()
	{
	alert("Thank you for your feedback.\nWe appreciate your input.");
	}