Ver Mensaje Individual
  #3 (permalink)  
Antiguo 15/09/2008, 15:07
Avatar de EPROM
EPROM
 
Fecha de Ingreso: abril-2005
Mensajes: 51
Antigüedad: 19 años, 9 meses
Puntos: 3
De acuerdo Respuesta: paso de parametros

Ordené un poco el código y anda rebien!

Saludos

Código:
<script language='javascript'>
var acePopupWindow=null;
function acePopup(mypage,myname,w,h,pos,infocus) {
 if (pos=='random') {
  LeftPosition=(screen.width)?Math.floor(Math.random ()*(screen.width-w)):100;
  TopPosition=(screen.height)?Math.floor(Math.random ()*((screen.height-h)-75)):100;
 } else if(pos=='center') {
  LeftPosition=(screen.width)?(screen.width-w)/2:100;
  TopPosition=(screen.height)?(screen.height-h)/2:100;
 } else if((pos!='center' && pos!='random') || pos==null){
  LeftPosition=590;
  TopPosition=0;
 }
 settings='width='+ w + ',height='+ h + ',top=' + TopPosition + ',left=' + LeftPosition + ',location=no,directories=no,menubar=no,toolbar=no ,status=no,scrollbars=no,resizable=no,dependent=no';
 window.open(mypage,myname,settings);
}
</script>
<a href="javascript:acePopup('http://www.google.cl','acePopup','400','400','','front');">Click Here</a>