22/08/2007, 21:28
|
| | | Fecha de Ingreso: septiembre-2003 Ubicación: Pues leyéndote
Mensajes: 1.076
Antigüedad: 21 años, 5 meses Puntos: 59 | |
Re: Alguien sabe de algun codigo que...
Código:
<html>
<head>
<script language="JavaScript">
var URL = "http://";
function abre3(){
web = "www.hotmail.com";
window.open(URL+web, '_blank', '');
setTimeout ("abre4()", 1000)
}
function abre2(){
web = "www.google.com";
window.open(URL+web, '_blank', '');
setTimeout ("abre3()", 1000)
}
function abre(){
web = "www.yahoo.com";
window.open(URL+web, '_blank', '');
setTimeout ("abre2()", 1000)
}
</script>
</head>
<body>
<a href="javascript:abre()">Abrete Sesamo!!</a>
</body>
</html> Saludos. |