function summer_validation()
{
    if ( document.MyForm.FirstName.value == "" )
    {
        alert ( "Please fill in the 'First Name' box." )
	MyForm.FirstName.focus();
        return false;
    }

    if ( document.MyForm.LastName.value == "" )
    {
        alert ( "Please fill in the 'Last Name' box." )
	MyForm.LastName.focus();
        return false;
    }


    if ( MyForm.Gender.selectedIndex == 0 ) 
    {
        alert ( "Please choose your Gender." )
	MyForm.Gender.focus();
        return false;
    }

    if ( document.MyForm.Address.value == "" )
    {
        alert ( "Please fill in the 'Address' box." )
	MyForm.Address.focus();
        return false;
    }

    if ( document.MyForm.City.value == "" )
    {
        alert ( "Please fill in the 'City' box." )
	MyForm.City.focus();
        return false;
    }

    if ( document.MyForm.ZipCode.value == "" )
    {
        alert ( "Please fill in the 'Zipcode' box." )
	MyForm.ZipCode.focus();
        return false;
    }

    if ( MyForm.Grade.selectedIndex == 0 ) 
    {
        alert ( "Please select your incoming grade level." )
	MyForm.Grade.focus();
        return false;
    }

    if ( document.MyForm.School.value == "" )
    {
        alert ( "Please enter the school you attend." )
	MyForm.School.focus();
        return false;
    }

    if ( MyForm.ShirtSize.selectedIndex == 0 ) 
    {
        alert ( "Please choose your shirt size." )
	MyForm.ShirtSize.focus();
        return false;
    }

    if ( document.MyForm.ParentName.value == "" )
    {
        alert ( "Please fill in the 'Parent Name' box." )
	MyForm.ParentName.focus();
        return false;
    }

    if ( document.MyForm.ParentEmail.value == "" )
    {
        alert ( "Please fill in the 'Parent Email' box." )
	MyForm.ParentEmail.focus();
        return false;
    }

    if ( document.MyForm.ParentPhone.value == "" )
    {
        alert ( "Please fill in the 'Phone Number' box." )
	MyForm.ParentPhone.focus();
        return false;
    }

	

    return true;
}

