Ver Mensaje Individual
  #6 (permalink)  
Antiguo 19/05/2005, 06:56
mackpipe
 
Fecha de Ingreso: abril-2003
Ubicación: Bogota
Mensajes: 131
Antigüedad: 21 años
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>