Ver Mensaje Individual
  #2 (permalink)  
Antiguo 07/05/2004, 09:44
Avatar de kahlito
kahlito
Colaborador
 
Fecha de Ingreso: marzo-2003
Ubicación: En el Estrecho y el mar
Mensajes: 2.936
Antigüedad: 21 años, 8 meses
Puntos: 65
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