function formProtect() {
	var why = 0
	
	if ( document.getElementById('safeForm').boxchild1first.value == "" )
			    {
			    	alert ( "You must have at least one child's first name." );
			    	return false;
	    }	
	
	if ( document.getElementById('safeForm').boxchild1last.value == "" )
				    {
				    	alert ( "You must have at least one child's last name." );
				    	return false;
	    }	
	    
	    if ( document.getElementById('safeForm').boxchild1grade.value == "" )
	    			    {
	    			    	alert ( "You must have at least one child's grade." );
	    			    	return false;
	    }	
	    
	    if ( document.getElementById('safeForm').boxstreet.value == "" )
	    			    {
	    			    	alert ( "Please enter an address." );
	    			    	return false;
	    }	
	    if ( document.getElementById('safeForm').boxparentfirst.value == "" )
	    	    			    {
	    	    			    	alert ( "Please enter a parent/guardian first name." );
	    	    			    	return false;
	    }	
	    if ( document.getElementById('safeForm').boxparentlast.value == "" )
	    			    {
	    			    	alert ( "Please enter a parent/guardian last name." );
	    			    	return false;
	    }	
	    
	    if ( document.getElementById('safeForm').boxphone.value == "" )
	    			    {
	    			    	alert ( "Please enter an emergency number." );
	    			    	return false;
	    }	
	    	
	
	document.getElementById('safeForm').setAttribute("action","/datacollection/addDataWSBParticipant.asp");
}
