Ver Mensaje Individual
  #7 (permalink)  
Antiguo 19/06/2005, 10:35
Avatar de tunait
tunait
Moderadora
 
Fecha de Ingreso: agosto-2001
Ubicación: Terok Nor
Mensajes: 16.805
Antigüedad: 23 años, 4 meses
Puntos: 381
oño es verdad ...

ahora creo que sí

Código:
<script type="text/javascript"> 
//cerrar todas las ventanas. Script por tunait!
//http://javascript.tunait.com/
//[email protected]
var lVentanas  = new Array()
function abreVentana(pagina,id){
	e = false
	for(t = 0; t < lVentanas.length; t++){
		if(lVentanas[t]== id){
			e = true;
			break;
		}
	}
	eval(id+"=window.open(pagina,'" + id + "','width=100,height=100')")
	eval(id).focus()
	if(!e){
		lVentanas[lVentanas.length] = id
	}
}
function cerrar(){
	for(m=0;m<lVentanas.length;m++){
	  if(eval(lVentanas[m])){
		eval(lVentanas[m]).close()
		}
	  }
	lVentanas.length = 0
}
</script>
...yá me contarás