Ver Mensaje Individual
  #3 (permalink)  
Antiguo 03/06/2004, 05:11
mooguel
 
Fecha de Ingreso: diciembre-2002
Mensajes: 102
Antigüedad: 21 años, 11 meses
Puntos: 0
pues no que no funciona así :(

tengo este otro script:

function NewWindow(url, windowName, w, h, scroll) {
var winl = (screen.width - w) / 2;
var wint = (screen.height - h) / 2;
winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl +',status=no,scrollbars=no,resizable=no,toolbar=no ,top=200,left=100';
win = window.open(url, windowName, winprops);
// Place the window
var NewWinPutX=2;
var NewWinPutY=2;

if (parseInt(navigator.appVersion) >= 4) {
win.window.focus();
}
}

// -->
</script>


pero tampoco va

Última edición por mooguel; 03/06/2004 a las 05:13