Ver Mensaje Individual
  #1 (permalink)  
Antiguo 23/05/2005, 17:00
jamon
 
Fecha de Ingreso: mayo-2005
Mensajes: 73
Antigüedad: 19 años, 9 meses
Puntos: 0
Exclamación !!! Manipulacion de popup !!!

Hola amigos tengo este script de popup que el popup me lo abre en medio de mi pantalla y me gustaria saber si lo puedo manipular para que se abra en la esquina inferior derecha de mi pantalla es decir arribita de donde esta el reloj del sistema ejejejeje

este es el script:
<script language="javascript">
var win = null;
function NewWindow(wizpage, wizname, w, h, scroll){
LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
settings = 'height=' + h + ',width=' + w + ',top= 230,' + TopPosition + ',left=' + LeftPosition + ',scrollbars=no' + scroll + ',resizable=no'
win = window.open(wizpage, wizname, settings)
}
</script>

de ante mano muchas gracias!!!
jamon