How to get min-width and max-width working in IE 6

Far from optimal, but should work in most cases: ```html ``` ```html #wrapper { width:expression(document.body.clientWidth < 950 ? "950px" : "100%" ); } ``` Note that users might get security warnings.