OK - here's some news.

We agreed to combine our forces with pelaillo
and I'm adapting to this new system right now
while trying to finish parser capable of doing
all tests to insure the compatibility with 4.01
of HTML standard @ W3Schools. long
sentence - I know

The Menuet functions are now lower priority.
We need to get it working under any Windows
so we can use OllyDbg for easiest debugging.

Parser(so far):
1) Saw some very bad suggestions on the net
which were the worst of algos O(n)*k ie trying
all possible keywords with the found string
2) Made it one step better by jumping to the
1st letter from a look-up table O(n)*k/25
3) Looking for a way to do a binary search so
I could get as low as O(.5n)*k/25.

As you already might think - the best way is
O(1) algo, but it's only possible with hashtable
but think of the work needed to be done on
EVERY <tag> change in the future, so I didn't
think too long about that possibility.