Ver Mensaje Individual
  #2 (permalink)  
Antiguo 29/08/2002, 09:50
Avatar de KarlanKas
KarlanKas
Moderador extraterrestre
 
Fecha de Ingreso: diciembre-2001
Ubicación: Madrid
Mensajes: 6.987
Antigüedad: 22 años, 11 meses
Puntos: 61
Re: ....Ayuda Urgente...

¿Qué te parece esto?
Código:
<html>
<head>
	<title>ventanas de despedida</title>
<script language="JavaScript" type="text/javascript">

	direcciones=new Array;
	direcciones[0]="http://www.forosdelweb.com";
	direcciones[1]="http://www.maestrosdelweb.com";
	direcciones[2]="http://www.chatdelweb.com";
	direcciones[3]="http://www.asptutor.com";
	direcciones[4]="http://www.webestilo.com";
	direcciones[5]="http://www.htmlpoint.com";
	direcciones[6]="http://www.lomascurioso.com";
	direcciones[7]="http://www.recursolatino.net";
	direcciones[8]="http://www.klasic.org";
	direcciones[9]="http://www.webareyou.com";
	function despedida(){
	numero = Math.random() * direcciones.length;
    numero = Math.floor(numero);
	pagina=direcciones[numero];
	window.open(pagina);
	}
	</script>
</head>

<body onunload="despedida()">



</body>
</html>