<BLOCKQUOTE><font size=1 face=arial>Citando:<hr height=1 noshade>
:) Hola Genteee !!!
Aquí pues ...nuevecita! por favor necesito que alguien me indique como introducir el siguiente código :
<pre>
<html>
<head><script LANGUAGE="JavaScript">
function redireccionar() {
var url640x480 = "http://www.tu-sitio.com/640x480";
var url800x600 = "http://www.tu-sitio.com/800x600";
var url1024x768 = "http://www.tu-sitio.com/1024x768";
if ((screen.width == 640) && (screen.height == 480))
window.location.href= url640x480;
else if ((screen.width == 800) && (screen.height == 600))
window.location.href= url800x600;
else if ((screen.width == 1024) && (screen.height == 768))
window.location.href= url1024x768;
else window.location.href= url640x480;
}
</script>
<title></title>
</head>
<body onLoad="redireccionar()">
</body>
</html>
</pre>
Lo que quiero es que mis visitantes adapten automáticamente su ventana a la resolución de 600 x 800 , ¿es el código correcto, cierto? estaré esperando ayuda, muchas gracias. ;) [/QUOTE]