function valform()  {
	fstname_ok= true;
	if (document.Ethics.fstName.value =="") fstname_ok=false;
	
	lstname_ok= true;
	if (document.Ethics.lstName.value =="") lstname_ok=false;
	
	hsid_ok= true;
	if (document.Ethics.hsid.value =="") hsid_ok=false;

	
	name_ok = (fstname_ok && lstname_ok);

	id_ok = (hsid_ok); 
	
<!--- 1st Question --->
	frstqst_ok=true;  
	if (!document.Ethics.OneTrue.checked) frstqst_ok=false;
	var count=0;
	   if (document.Ethics.OneTrue.checked)  {
	  	count++;}
	   if (document.Ethics.OneFalse.checked)  {
	  	count++;}
	   if (count!=1); {
	form_ok=false;
        }
   one_ok = (frstqst_ok && count==1 );
<!--- 2nd Question --->
	twoqst_ok=true;  
	if (!document.Ethics.TwoTrue.checked) twoqst_ok=false;
	var count=0;
	   if (document.Ethics.TwoTrue.checked)  {
	  	count++;}
	   if (document.Ethics.TwoFalse.checked)  {
	  	count++;}
	   if (count!=1); {
	form_ok=false;
        }
   two_ok = (twoqst_ok && count==1 );
<!--- 3rd Question --->
	threeqst_ok=true;  
	if (!document.Ethics.ThreeFalse.checked) threeqst_ok=false;
	var count=0;
	   if (document.Ethics.ThreeTrue.checked)  {
	  	count++;}
	   if (document.Ethics.ThreeFalse.checked)  {
	  	count++;}
	   if (count!=1); {
	form_ok=false;
        }
   three_ok = (threeqst_ok && count==1 );
<!--- 4th Question --->
	fourqst_ok=true;  
	if (!document.Ethics.FourTrue.checked) fourqst_ok=false;
	var count=0;
	   if (document.Ethics.FourTrue.checked)  {
	  	count++;}
	   if (document.Ethics.FourFalse.checked)  {
	  	count++;}
	   if (count!=1); {
	form_ok=false;
        }
   four_ok = (fourqst_ok && count==1 );
<!--- 5th Question --->
	fiveqst_ok=true;  
	if (!document.Ethics.FiveFalse.checked) fiveqst_ok=false;
	var count=0;
	   if (document.Ethics.FiveTrue.checked)  {
	  	count++;}
	   if (document.Ethics.FiveFalse.checked)  {
	  	count++;}
	   if (count!=1); {
	form_ok=false;
        }
   five_ok = (fiveqst_ok && count==1 );
<!--- 6th Question --->
	sixqst_ok=true;  
	if (!document.Ethics.SixTrue.checked) sixqst_ok=false;
	var count=0;
	   if (document.Ethics.SixTrue.checked)  {
	  	count++;}
	   if (document.Ethics.SixFalse.checked)  {
	  	count++;}
	   if (count!=1); {
	form_ok=false;
        }
   six_ok = (sixqst_ok && count==1 );

 form_ok = (name_ok && id_ok && one_ok && two_ok && three_ok && four_ok && five_ok && six_ok);


	if (form_ok)  {
	alert("Your test is submitted! This will be recorded in your training records.");
	}  else  {
	if (fstname_ok == false) alert("Please include your first name");
	if (lstname_ok == false) alert("Please include your last name");
	if (id_ok == false) alert("Your ID Number is required");
	if (one_ok == false) alert("ERROR - Each time this box appears you missed an item.");
	if (two_ok == false) alert("ERROR - Each time this box appears you missed an item.");
	if (three_ok == false) alert("ERROR - Each time this box appears you missed an item.");
	if (four_ok == false) alert("ERROR - Each time this box appears you missed an item.");
	if (five_ok == false) alert("ERROR - Each time this box appears you missed an item.");
	if (six_ok == false) alert("ERROR - Each time this box appears you missed an item.");
	
	}

	return (form_ok);
}