well, here's a little javascript for a redirection based on the users screen resolution.
<SCRIPT type="text/javascript">
if ((screen.width>=1152) && (screen.height>=854)) {
window.location="highres.html";
} else {
window.location="lowres.html";
}
</SCRIPT>
and here is a little script to resize the window (place in the <HEAD> of the html page):
<script type="text/javascript">
window.resizeTo(1152,854);
</script>