pic1= new Image(); 
pic1.src="http://newcombsolutions.com/imgs/main_bg.jpg"; 
pic2= new Image(); 
pic2.src="http://newcombsolutions.com/imgs/six_solutions.jpg"; 

function ValidateAssessmentForm() {
	var f = document.assessment;
	if (f.Our_marketing_is_executed_efficiently.value == '') {
		alert('Please fill in the Our marketing is executed efficiently field.');
		f.Our_marketing_is_executed_efficiently.focus();
		
	} else if (f.We_have_an_annual_plan_budget_and_review.value == '') {
		alert('Please fill in the We have an annual plan, budget and review field.');
		f.We_have_an_annual_plan_budget_and_review.focus();
		
	} else if (f.We_understand_our_marketing_ROI.value == '') {
		alert('Please fill in the We understand our marketing R.O.I. field.');
		f.We_understand_our_marketing_ROI.focus();
		
	} else if (f.Our_brand_helps_us_stand_out_from_our_competitors.value == '') {
		alert('Please fill in the Our brand helps us stand out from our competitors field.');
		f.Our_brand_helps_us_stand_out_from_our_competitors.focus();	
	} else if (f.contact_state.value == '') {
		alert('Please fill in the State field.');
		f.contact_state.focus();	
	} else if (f.contact_zipcode.value == '') {
		alert('Please fill in the Zip field.');
		f.contact_zipcode.focus();	
	} else if (f.contact_phone.value == '') {
		alert('Please fill in the Phone field.');
		f.contact_phone.focus();	
	} else if (f.email.value == '') {
		alert('Please fill in the E-mail field.');
		f.email.focus();	
	} else if (f.event_info.value == 'Please select one') {
		alert('Please select an Event Type.');
		f.event_info.focus();			
	} else if (f.start_date.value == '') {
		alert('Please fill in the Start Date field.');
		f.start_date.focus();			
	} else if (f.end_date.value == '') {
		alert('Please fill in the End Date field.');
		f.end_date.focus();				
	} else if (f.hours_per_day.value == '') {
		alert('Please fill in the Hours Per Day field.');
		f.hours_per_day.focus();				
	} else if (f.proposal_needed_by.value == '') {
		alert('Please fill in the Proposal Needed field.');
		f.proposal_needed_by.focus();				
	} else if (f.expected_attendance.value == '') {
		alert('Please fill in the Expected Attendance field.');
		f.expected_attendance.focus();						
	} else {
		alert('Thank you. We will be contacting you soon regarding your interest in Central Coast Industries.');
		f.submit();
	}
}
