I learned how to program when I was 11; today I teach Computer Science at a University. I've taught introduction to programming in different languages to University students in different places and also to teenagers.
I think there are a couple of things that may be important. The first is: everyone should read and write a lot. Not computer programs -- they should read lots of books and write lots of essays. Reading and writing are absolutely important for Math and Computer Science! Being able to understand a question or problem specification (or the requirements for a program), knowing when it's ambiguous, etc makes a huge difference. Also, knowing how to write is just as important: writing is organizing thoughts and making them meaningful to someone else, and programming is also organizing your thoughts and communicating (to a quite different "someone" but still...)
And writing should not actually be restricted to essays. having a local newspaper at the school is great. Having students build written arguments before a debate is a great exercise...
Another important thing is to develop discipline. Beginner programmers get frustrated and give up too soon. An experienced programmer knows that there will be lots of ups and downs when trying to solve a problem -- he needs to keep trying. Too abstract a skill? Maybe, but it should be developed early (long before highschool actually).
Thinking algorithmically is not exclusive to programming. In Math there's plenty of room for that -- and perhaps the "algorithms" there should be more clearly identified as such.
Also, generalization and abstraction are also very important. (Being able to factor code, architect an elegand and somple solution to a difficult problem usually depend on finding the right abstraction). Pushing a little bit more abstraction into the Math a student deals with may help a lot here.
Finally, students should not be afraid of Math (see the second Chapter of Papert's "Mindstorms"). This is also something that should be dealt with looong before high school.
I think these are much more important than any more specific skill, and that if students work on them during high school chances are that they'll become good programmers if they choose to learn programming.