Nell'HEAD:
<script language="JavaScript" type="text/javascript">
<!--
function screenDetect() {
var screen1 = "altre_risoluzioni.htm";
var screen2 = "800x600.html";
var screen3 = "1024x768.html";
if ((screen.width == 640) && (screen.height == 480))
window.location.href = screen1;
else if ((screen.width == 800) && (screen.height == 600))
window.location.href = screen2;
else if ((screen.width == 1024) && (screen.height == 768))
window.location.href = screen3;
else window.location.href = "altre_risoluzioni.htm";
}
// -->
</script>
Nel BODY:
..onload=screenDetect()
Ovviamente dovrai sostituire "800x600.html" e gli altri indirizzi con il nome delle tue pagine da aprire.