codice:
<html>

<head>
  <title>Finestra redirect</title>
  <script type="text/javascript">
  <!--
  function avvisa_e_vai(theURL) {
    window.alert("La pagina che stai per visitare è \n" + theURL);
    window.location.href = theURL;
  }
  //-->
  </script>
</head>

<body onload="avvisa_e_vai('http:\\www.html.it');">
  ...
</body>

</html>
Secan