Buongiorno, se ho ben capito serve qualcosa del genere:

TEST sarà:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>TEST</title>
</head>
<script type="text/javascript">
function apri_chiudi()
{
window.open('test1.htm','','fullscreen=yes');
window.close();
}
</script>
<body onload="apri_chiudi()">Non mi vedrai mai</body>
</html>

e TEST 1 sarà:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>TEST1</title>
</head>
<body>Chiudimi</body>
</html>

Spero di essere stato utile....