Ver Mensaje Individual
  #5 (permalink)  
Antiguo 09/11/2005, 06:31
Avatar de DINASEN
DINASEN
 
Fecha de Ingreso: marzo-2003
Mensajes: 997
Antigüedad: 22 años, 1 mes
Puntos: 1
lo he cambiado a
Código PHP:
function cambia(){
var 
isNN,isIE;
if (
parseInt(navigator.appVersion.charAt(0))>=4){
isNN=(navigator.appName=="Netscape")?1:0;
isIE=(navigator.appName.indexOf("Microsoft")!=-1)?1:0;
}
if (
isIE){
window.resizeTo(100,100);
width=100-(document.body.clientWidth-document.width);
height=100-(document.body.clientHeight-document.height);
window.resizeTo(width,height);
window.moveTo((screen.width-width)/2,(screen.height-height)/2);}
if (
isNN){
window.moveTo((screen.width-(document.width))/2,(screen.height-(document.height))/2)
//window.innerWidth=document.width;
window.innerHeight=document.height;
}

pero sigue sin funcionar en ie

Un Salufo