Ok, this may sound easy but I'm drawig a blank.

I have a HTML that resizes depending on the users resolution.
Now, there is a table in there that needs to be a certain width. But, not just any width.

Code:
<TABLE WIDTH="EQUAL OR GREATER THEN X">
<TABLE>
What I mean by "EQUAL OR GREATER THEN X" is:
X is the MINIMUM size my table has to be. BUT, if possible make it full size of the window. Heres another example

If I used
Code:
<TABLE WIDTH="100%">
</TABLE>
That would make my table tiny if the user shrunk the browser to just a single line, right?

BUT, what I need it to do instead is... if the browser size is less then X, stop shrinking the table. I can't use the following code either.

Code:
<TABLE WIDTH=X>
</TABLE>
This would make my table a constant size, which I don't want. I need it to size to the window if browser is bigger then X.
What I was thinking was

Code:
<TABLE WIDTH="100%">
<TR WIDTH=X>
</TABLE>
I was hoping I could make a row width X, therefore, when the table got smaller then TR, it would stop.. because TR needs that space. This does not work, any suggestions?