//<![CDATA[
function checkFormMail(form){
	totalAlert=""; // global variable in form_checker.js
	var result=false;
	nonBlank(form.formFirstName,'- Please enter your first name\n');
	nonBlank(form.formLastName,'- Please enter your last name\n');
	goodEMail(form.formEmail,'- Please enter an email address\n');
	nonBlank(form.formAddress,'- Please enter a physical address\n');
	nonBlank(form.formCity,'- Please enter a city\n');
	nonBlank(form.formState,'- Please enter a state\n');
	goodInt(form.formZip,'- Please enter a zipcode\n');
	nonBlank(form.formPhone,'- Please enter a phone number\n');
	nonBlank(form.formFax,'- Please enter a fax number\n');
	nonBlank(form.formRate,'- Please enter an hourly rate\n');
	nonBlank(form.formLicense,'- Please enter a contractor license #\n');
	nonBlank(form.formInsurance,'- Please enter the name of your incurance company\n');
	nonBlank(form.formPolicy,'- Please enter a insurance policy #\n');
	nonBlank(form.formBonding,'- Please enter the bonding/liability amount\n');
	if (!document.newTicket.formType[0].checked &&
		!document.newTicket.formType[1].checked &&
		!document.newTicket.formType[2].checked)
		{ totalAlert = totalAlert + '- Please select a company type\n'; }
	nonBlank(form.formFederal,'- Please enter a federal tax ID #\n');
	nonBlank(form.formStatetax,'- Please enter a state tax ID #\n');
	nonBlank(form.formYears,'- Please enter your # of years in business\n');
	nonBlank(form.formRevenue,'- Please enter gross annual revenue\n');
	nonBlank(form.formBank,'- Please enter the name of your bank\n');
	
	if(totalAlert=="")
		result=true;
	else{
		alert(totalAlert);
		result=false;
	}
	return result;
}
//]]>