function tryout_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 ( document.MyForm.Email.value == "" )
    {
        alert ( "Please fill in the 'Email' box." )
	MyForm.Email.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 ( document.MyForm.Phone.value == "" )
    {
        alert ( "Please fill in the 'Phone' box." )
	MyForm.Phone.focus();
        return false;
    }

    if ( document.MyForm.Age.value == "" )
    {
        alert ( "Please fill in the 'Age' box." )
	MyForm.Age.focus();
        return false;
    }

    if ( document.MyForm.DOB.value == "" )
    {
        alert ( "Please fill in the 'Date of Birth' box." )
	MyForm.DOB.focus();
        return false;
    }

    if ( document.MyForm.E_Contact.value == "" )
    {
        alert ( "Please fill in the 'Emergency Contact Name' box." )
	MyForm.E_Contact.focus();
        return false;
    }

    if ( document.MyForm.Relation.value == "" )
    {
        alert ( "Please fill in the 'Relation to Athlete' box." )
	MyForm.Relation.focus();
        return false;
    }

    if ( document.MyForm.EC_Phone.value == "" )
    {
        alert ( "Please fill in the 'Emergency Contact Phone' box." )
	MyForm.EC_Phone.focus();
        return false;
    }

    if ( MyForm.team_type.selectedIndex == 0 )
    {
        alert ( "Please select a team type." )
	MyForm.team_type.focus();
        return false;
    }


    if ( MyForm.Position1.selectedIndex == 0 )
    {
        alert ( "Please select a primary position.  This is informational only and not set in stone." )
	MyForm.Position1.focus();
        return false;
    }

    if ( document.MyForm.Agree.checked == false )
    {
        alert ( "Please check the 'I/We Agree' box." )
	MyForm.Agree.focus();
        return false;
    }

    if ( document.MyForm.PG_Name.value == "" )
    {
        alert ( "Please fill in the 'Parent/Guardian Name' box." )
	MyForm.PG_Name.focus();
        return false;
    }

    return true;
}

