//<![CDATA[

function validateForm() {
	str = "";
	with (document.form1) {
		if (auctionuserID.value == "")
			str = str + "Seller user ID 1 (if applicable or type N/A)\n";
		if (firstname.value == "")
			str = str + "First Name\n";
		if (lastname.value == "")
			str = str + "Last Name\n";
		if (company.value == "")
			str = str + "Company Name (if applicable or type N/A)\n";
		if (email.value == "")
			str = str + "Email Address\n";
		if (Phone.value == "")
			str = str + "Phone Number\n";
	}
	if (str.length > 0) {
		alert("The following required fields may not be left blank:\n\n------------------------------------\n\n" + str + "\n------------------------------------\n\nPlease check your entry and re-submit the form.");
		return false;
	}
	return true;
}

//]]>
