Your question was "should you learn F# or Haskell if you know OCaml" and I believe the answer is certainly yes, you should learn all three languages because each one has something to offer.
Longevity
There is no way any of OCaml, F# or Haskell will be abandoned in a couple of years.
OCaml has huge support from industry and several major projects are underway, e.g. batteries included and the parallel GC. Even if INRIA did drop it (which I do not believe they will), there are many companies relying upon it (such as Jane St., LexiFi, MLState, Plectix and Flying Frog) who would pick up development. I think it is much more likely that OCaml's industrial users will continue to collaborate because this has been so successful in the past.
Microsoft are committed to releasing F# in VS 2010 (I spoke to them about this only last week). Then it will be dropped on 10,000,000 developers, 1,000,000 of whom are rich enough to have paid for Visual Studio (!).
Haskell has industrial backers like Galois who would probably continue to support GHC long term.
Practicality
I wrote the article you cited about hash tables. They are a good data structure. Other people have referred to purely functional alternatives like ternary trees and Patricia trees but these are usually ~10x slower than hash tables in practice. The reason is simply that the trees incur more pointer indirections and that is already very inefficient today and is getting worse as the memory gap widens.
However, this is not a problem if you never need efficiency. Moreover, you can patch Haskell yourself because it is open source.
My personal preference is for optional laziness and optional purity because both are generally counter productive in the real world (e.g. laziness makes performance and memory consumption wildly unpredictable and purity severely degrades average-case performance and makes interoperability a nightmare). I am one of the only people earning a living from functional programming through my own company. Suffice to say, if I thought Haskell were viable I would have diversified into it years ago but I keep choosing not to because I do not believe it is commercially viable.
You said "I don't like being tied to a bulky .NET framework unless the benefits are large". Although .NET is theoretically general purpose its use is actually focused on very specific business domains in practice (unlike the JVM) and, consequently, the quantity and quality of libraries outside those domains (e.g. in my domain of scientific computing) is generally awful. That is not the benefit of .NET. The real benefit of .NET is that you can sell the libraries that you write in F#. Nobody has ever succeeded selling libraries to OCaml and Haskell programmers (and I am one of the few people to have tried) but F# libraries already sell in significant quantities and that will only get better when F# has its first full release next year. So the bulky .NET framework is well worth it if you want to earn a living by writing software.
Well designed
These languages are all well designed but for different purposes. In particular, F# was designed to address all of the most serious practical problems with OCaml and Haskell such as poor interoperability, lack of concurrent garbage collection and mature modern libraries like WPF.