Ver Mensaje Individual
  #5 (permalink)  
Antiguo 02/04/2002, 18:49
El Jedi
 
Fecha de Ingreso: abril-2002
Mensajes: 127
Antigüedad: 22 años, 11 meses
Puntos: 0
Re: Como le digo la posición?

Gornak
Prueba este codigo que es sencillo y facil
<head>
function NewWindow(u,n,w,h,f,p,x,y)
{var win=(ws=window.screen?1:0,m=Math,C='center',R='ran dom',M='custom',sw=screen.availWidth,sh=screen.ava ilHeight,T=(p==C&&ws)?(sh-h)/2:(p==R&&ws)?(m.floor(m.random()*(sh-h))):(p==M)?y:100,L=(p==C&&ws)?(sw-w)/2:(p==R&&ws)?(m.floor(m.random()*(sw-w))):(p==M)?x:100,s='width='+w+',height='+h+',top= '+T+',left='+L,s+=(!f||f=='')?'':','+f,window.open (u,n,s));if(win.focus)
{win.focus();
}}
</head>
<body>
<a href="dondesedirije.html" target="Title de la pagina donde se dirije" onclick="NewWindow(this.href,this.target,638, 500,'scrollbars','//aqui le das la ubicacion, este caso left');return false" onfocus="this.blur()">Vinculo a dicha pagina</a>

</body>