
19/05/2005, 06:56
|
| | Fecha de Ingreso: abril-2003 Ubicación: Bogota
Mensajes: 131
Antigüedad: 21 años, 10 meses Puntos: 2 | |
<html>
<head>
<script>
function pregunta()
{
if(confirm("Esta seguro"))
document.location.href="si.html";
else
document.location.href="no.html";
}
</script>
</head>
<body>
<script>pregunta();</script>
</body>
</html> |