function validateOnSubmit(blockOffers) {
	var elem;
	var errs=0;
	if (!validatePresent(document.forms.fc1.start_biz_id,  'inf_start_biz_id'))        errs += 1; 
	if (!validatePresent(document.forms.fc1.invest_level_id,  'inf_invest_level_id'))        errs += 1; 
	if (!validatePresent(document.forms.fc1.zip,  'inf_zip'))        errs += 1; 
	if (!validatePresent(document.forms.fc1.country_id,  'inf_country_id'))        errs += 1; 
	if (!validatePresent(document.forms.fc1.state_id,  'inf_state_id'))        errs += 1; 
	if (!validatePresent(document.forms.fc1.city,  'inf_city'))        errs += 1; 
	if (!validatePresent(document.forms.fc1.address,  'inf_address'))        errs += 1; 
	if (!validateRadio(document.forms.fc1.time_to_call,  'inf_time_to_call'))        errs += 1; 
	if (!validatePresent(document.forms.fc1.phone,  'inf_phone'))        errs += 1; 
	if (!validatePresent(document.forms.fc1.email,  'inf_email'))        errs += 1; 
	if (!validatePresent(document.forms.fc1.last_name,  'inf_last_name'))        errs += 1; 
	if (!validatePresent(document.forms.fc1.first_name,  'inf_first_name'))        errs += 1; 
	//if (document.forms.fc1.form_consult.value == "1"){
	//	if(!validateRadio(document.forms.fc1.franchise_consultation_send,  'inf_franchise_consultation_send'))        errs += 1;
	//} 

	if (errs>1)  alert('There are fields which need correction before sending');
	if (errs==1) alert('There is a field which needs correction before sending');

	return (errs==0);
};
