<!--

function validate_form ( )
{
    valid = true;

    if ( document.Recycling_Partnerships.Name.value == "" )
    {
        alert ( "Please supply your name in the required field." );
        valid = false;
    }
    if (( document.Recycling_Partnerships.Email.value == "" ) && ( document.Recycling_Partnerships.DaytimePhone.value == "" ))
    {
        alert ( "Please supply a way for us to contact you, either your email or phone number will be fine." );
        valid = false;
    }

    return valid;
}

//-->