function form_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.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.Emergency_Contact_Name.value == "" )
    {
        alert ( "Please fill in the 'Emergency Contact Name' box." )
	MyForm.Emergency_Contact_Name.focus();
        return false;
    }

    if ( document.MyForm.Relation_to_athlete.value == "" )
    {
        alert ( "Please fill in the 'Relation to Athlete' box." )
	MyForm.Relation_to_athlete.focus();
        return false;
    }

    if ( document.MyForm.Emergency_Contact_Phone.value == "" )
    {
        alert ( "Please fill in the 'Emergency Contact Phone' box." )
	MyForm.Emergency_Contact_Phone.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;
}

