// JavaScript Document
  
			function validate() {  
				
				
				//FOR MAILED MATERIALS CONTACT VALIDATOR
				
					
				if (document.form2.organization.value.length < 1 ) {
					 window.alert("Please enter your organization's name.");
					 return false;
				 }
				 
				 if (document.form2.name.value.length < 1 ) {
					 window.alert("Please enter your full name.");
					 return false;
				 }
				 
				if (document.form2.address.value.length < 1 ) {
					window.alert("Please enter your street address.");
					return false;
				}
				if (document.form2.city.value.length < 1 ) {
					window.alert("Please enter your city or town.");
					return false;
				}
				
				if (document.form2.state.value.length < 1 ) {
					window.alert("Please enter your state.");
					return false;
				}
				
				if (document.form2.zip.value.length < 1 ) {
					window.alert("Please enter your zip-code.");
					return false;
				}
				
				if (document.form2.phone.value.length < 1 ) {
					window.alert("Please enter your phone number.");
					return false;
				}
				
				if (document.form2.email.value.length < 1 ) {
					window.alert("Please enter your email address.");
					return false;
				}
				if (document.form2.date1.value.length < 1 ) {
					window.alert("Please enter today's date.");
					return false;
				}
				if (document.form2.date2.value.length < 1 ) {
					window.alert("Please enter the date you would like to receive these materials.");
					return false;
				}
				
				//FOR SELECTED MATERIALS VALIDATOR
				 if (document.form2.enginfosheet.checked==true && document.form2.enginfoqty.value.length < 1 ) {
				 window.alert("Please enter the quantity for Countdown Information Sheets - English.");
				 return false;
				 }
				 if (document.form2.enghandbook.checked==true && document.form2.enghandqty.value.length < 1 ) {
				 window.alert("Please enter the quantity for Countdown Kindergarten Handbook - English.");
				 return false;
				 }
				 if (document.form2.engbookmark.checked==true && document.form2.engbookqty.value.length < 1 ) {
				 window.alert("Please enter the quantity for 10 Ways to Get Ready Bookmark - English.");
				 return false;
				 }
				 if (document.form2.engregistered.checked==true && document.form2.engnextqty.value.length < 1 ) {
				 window.alert("Please enter the quantity for Now That You Have Registered - English.");
				 return false;
				 }
				 if (document.form2.engfunmonth.checked==true && document.form2.engfunqty.value.length < 1 ) {
				 window.alert("Please enter the quantity for Fun-by-the-Month - English.");
				 return false;
				 }
				 if (document.form2.engimmune.checked==true && document.form2.engimmuneqty.value.length < 1 ) {
				 window.alert("Please enter the quantity for Residency and Immunization Requirements - English.");
				 return false;
				 }
				 if (document.form2.engagreement.checked==true && document.form2.engagreeqty.value.length < 1 ) {
				 window.alert("Please enter the quantity for BPS Parent/Student Agreement - English.");
				 return false;
				 }
				 if (document.form2.engpreview.checked==true && document.form2.engpreviewqty.value.length < 1 ) {
				 window.alert("Please enter the quantity for School Preview Timetables - English.");
				 return false;
				 }
				 
				 if (document.form2.spaninfosheet.checked==true && document.form2.spaninfoqty.value.length < 1 ) {
				 window.alert("Please enter the quantity for Countdown Information Sheets - Spanish.");
				 return false;
				 }
				 if (document.form2.spanhandbook.checked==true && document.form2.spanhandqty.value.length < 1 ) {
				 window.alert("Please enter the quantity for Countdown Kindergarten Handbook - Spanish.");
				 return false;
				 }
				 if (document.form2.spanbookmark.checked==true && document.form2.spanbookqty.value.length < 1 ) {
				 window.alert("Please enter the quantity for 10 Ways to Get Ready Bookmark - Spanish.");
				 return false;
				 }
				 if (document.form2.spanregistered.checked==true && document.form2.spannextqty.value.length < 1 ) {
				 window.alert("Please enter the quantity for Now That You Have Registered - Spanish.");
				 return false;
				 }
				 if (document.form2.spanimmune.checked==true && document.form2.spanimmuneqty.value.length < 1 ) {
				 window.alert("Please enter the quantity for Residency and Immunization Requirements - Spanish.");
				 return false;
				 }
				 if (document.form2.spanagreement.checked==true && document.form2.spanagreeqty.value.length < 1 ) {
				 window.alert("Please enter the quantity for BPS Parent/Student Agreement - Spanish.");
				 return false;
				 }
				 if (document.form2.spanpreview.checked==true && document.form2.spanpreviewqty.value.length < 1 ) {
				 window.alert("Please enter the quantity for School Preview Timetables - Spanish.");
				 return false;
				 }
				 
				 if (document.form2.portinfosheet.checked==true && document.form2.portinfoqty.value.length < 1 ) {
				 window.alert("Please enter the quantity for Countdown Information Sheets - Portuguese.");
				 return false;
				 }
				 if (document.form2.porthandbook.checked==true && document.form2.porthandqty.value.length < 1 ) {
				 window.alert("Please enter the quantity for Countdown Kindergarten Handbook - Portuguese.");
				 return false;
				 }
				 if (document.form2.portbookmark.checked==true && document.form2.portbookqty.value.length < 1 ) {
				 window.alert("Please enter the quantity for 10 Ways to Get Ready Bookmark - Portuguese.");
				 return false;
				 }
				 if (document.form2.portregistered.checked==true && document.form2.portnextqty.value.length < 1 ) {
				 window.alert("Please enter the quantity for Now That You Have Registered - Portuguese.");
				 return false;
				 }
				 if (document.form2.portimmune.checked==true && document.form2.portimmuneqty.value.length < 1 ) {
				 window.alert("Please enter the quantity for Residency and Immunization Requirements - Portuguese.");
				 return false;
				 }
				 if (document.form2.portagreement.checked==true && document.form2.portagreeqty.value.length < 1 ) {
				 window.alert("Please enter the quantity for BPS Parent/Student Agreement - Portuguese.");
				 return false;
				 }
				 
				 if (document.form2.vietinfosheet.checked==true && document.form2.vietinfoqty.value.length < 1 ) {
				 window.alert("Please enter the quantity for Countdown Information Sheets - Vietnamese.");
				 return false;
				 }
				 if (document.form2.viethandbook.checked==true && document.form2.viethandqty.value.length < 1 ) {
				 window.alert("Please enter the quantity for Countdown Kindergarten Handbook - Vietnamese.");
				 return false;
				 }
				 if (document.form2.vietbookmark.checked==true && document.form2.vietbookqty.value.length < 1 ) {
				 window.alert("Please enter the quantity for 10 Ways to Get Ready Bookmark - Vietnamese.");
				 return false;
				 }
				 if (document.form2.vietregistered.checked==true && document.form2.vietnextqty.value.length < 1 ) {
				 window.alert("Please enter the quantity for Now That You Have Registered - Vietnamese.");
				 return false;
				 }
				 if (document.form2.vietimmune.checked==true && document.form2.vietimmuneqty.value.length < 1 ) {
				 window.alert("Please enter the quantity for Residency and Immunization Requirements - Vietnamese.");
				 return false;
				 }
				 if (document.form2.vietagreement.checked==true && document.form2.vietagreeqty.value.length < 1 ) {
				 window.alert("Please enter the quantity for BPS Parent/Student Agreement - Vietnamese.");
				 return false;
				 }
				 
				 if (document.form2.haitinfosheet.checked==true && document.form2.haitinfoqty.value.length < 1 ) {
				 window.alert("Please enter the quantity for Countdown Information Sheets - Haitian Creole.");
				 return false;
				 }
				 if (document.form2.haithandbook.checked==true && document.form2.haithandqty.value.length < 1 ) {
				 window.alert("Please enter the quantity for Countdown Kindergarten Handbook - Haitian Creole.");
				 return false;
				 }
				 if (document.form2.haitbookmark.checked==true && document.form2.haitbookqty.value.length < 1 ) {
				 window.alert("Please enter the quantity for 10 Ways to Get Ready Bookmark - Haitian Creole.");
				 return false;
				 }
				 if (document.form2.haitregistered.checked==true && document.form2.haitnextqty.value.length < 1 ) {
				 window.alert("Please enter the quantity for Now That You Have Registered - Haitian Creole.");
				 return false;
				 }
				 if (document.form2.haitimmune.checked==true && document.form2.haitimmuneqty.value.length < 1 ) {
				 window.alert("Please enter the quantity for Residency and Immunization Requirements - Haitian Creole.");
				 return false;
				 }
				 if (document.form2.haitagreement.checked==true && document.form2.haitagreeqty.value.length < 1 ) {
				 window.alert("Please enter the quantity for BPS Parent/Student Agreement - Haitian Creole.");
				 return false;
				 }
				 
				 if (document.form2.capeinfosheet.checked==true && document.form2.capeinfoqty.value.length < 1 ) {
				 window.alert("Please enter the quantity for Countdown Information Sheets - Cape Verdean Creole.");
				 return false;
				 }
				 if (document.form2.capehandbook.checked==true && document.form2.capehandqty.value.length < 1 ) {
				 window.alert("Please enter the quantity for Countdown Kindergarten Handbook - Cape Verdean Creole.");
				 return false;
				 }
				 if (document.form2.capebookmark.checked==true && document.form2.capebookqty.value.length < 1 ) {
				 window.alert("Please enter the quantity for 10 Ways to Get Ready Bookmark - Cape Verdean Creole.");
				 return false;
				 }
				 if (document.form2.caperegistered.checked==true && document.form2.capenextqty.value.length < 1 ) {
				 window.alert("Please enter the quantity for Now That You Have Registered - Cape Verdean Creole.");
				 return false;
				 }
				 if (document.form2.capeimmune.checked==true && document.form2.capeimmuneqty.value.length < 1 ) {
				 window.alert("Please enter the quantity for Residency and Immunization Requirements - Cape Verdean Creole.");
				 return false;
				 }
				 if (document.form2.capeagreement.checked==true && document.form2.capeagreeqty.value.length < 1 ) {
				 window.alert("Please enter the quantity for BPS Parent/Student Agreement - Cape Verdean Creole.");
				 return false;
				 }
				 
				 if (document.form2.chininfosheet.checked==true && document.form2.chininfoqty.value.length < 1 ) {
				 window.alert("Please enter the quantity for Countdown Information Sheets - Chinese.");
				 return false;
				 }
				 if (document.form2.chinhandbook.checked==true && document.form2.chinhandqty.value.length < 1 ) {
				 window.alert("Please enter the quantity for Countdown Kindergarten Handbook - Chinese.");
				 return false;
				 }
				 if (document.form2.chinbookmark.checked==true && document.form2.chinbookqty.value.length < 1 ) {
				 window.alert("Please enter the quantity for 10 Ways to Get Ready Bookmark - Chinese.");
				 return false;
				 }
				 if (document.form2.chinregistered.checked==true && document.form2.chinnextqty.value.length < 1 ) {
				 window.alert("Please enter the quantity for Now That You Have Registered - Chinese.");
				 return false;
				 }
				 if (document.form2.chinimmune.checked==true && document.form2.chinimmuneqty.value.length < 1 ) {
				 window.alert("Please enter the quantity for Residency and Immunization Requirements - Chinese.");
				 return false;
				 }
				 if (document.form2.chinagreement.checked==true && document.form2.chinagreeqty.value.length < 1 ) {
				 window.alert("Please enter the quantity for BPS Parent/Student Agreement - Chinese.");
				 return false;
				 }
				
				return true;
}
			
		

			
			
			
			
	