Hola puedes probar con este:
Código:
<head>
<script language="JavaScript">
function redireccionar() {
var url800x600 = "index800.htm";
var url1024x768 = "index1024.htm";
var url1152x864 = "index1024.htm";
var nWdt = screen.width;
var nHgh = screen.height;
if ((nWdt == 800) && (nHgh == 600)) window.location.href= url800x600;
else if ((nWdt == 1024) && (nHgh == 768)) window.location.href= url1024x768;
else if ((nWdt == 1152) && (nHgh == 864)) window.location.href= url1152x864;
else window.location.href= url800x600;
}
</script>
</head>
<body onLoad="redireccionar()">
Solo tendrias que poner el nombre de tus paginas en vez de index800.htm pondrias en tu caso pagina2.html por ejemplo
Saludosss