function Redirect() {
if ((Screen.displayWidth < 1024) && (Screen.displayHeight < 780)) {
window.location.href="PATH OF THE PAGE TO REDIRECT TO";
}
}
<body onload="Redirect();">
<p>What's your screen resolution?</p>
<input type="button" value="Less than 1024x780" onclick="window.location.href='page1.html';" />
<input type="button" value="1024x768 or greater" onclick="window.location.href='page2.html';" />
class Brick implements Throwable { ... }