Prova cosi....
File : test2001.html
codice:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Untitled</title>
</head>
<body>
<script language="JavaScript" type="text/javascript">
<!--
var wnd_parms2 = "height=500, width=700, menubar=no, toolbar=no,resizable=no,scrollbars=yes";
window.open("test2001b.html","messageWindow3",wnd_parms2);
//-->
</script>
Sono la prima pagina HTML.
</body>
</html>
File : test2001b.html
codice:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Untitled</title>
<script language="JavaScript" type="text/javascript">
<!--
function redirect(url) {
window.opener.location=url;
window.close();
}
//-->
</script>
</head>
<body>
Sono la seconda pagina HTML
Clicca qui
</body>
</html>
File : test2001c.html
codice:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Untitled</title>
</head>
<body>
Sono la terza pagina HTML
</body>
</html>