Скрипт можно было взять прямо из сегодняшнего урока и внести несколько изменений:
Вот готовый скрипт:
<SCRIPT LANGUAGE="JavaScript">
function openindex()
{
var name=prompt("Как вас зовут?","Напишите
здесь")
var OpenWindow=window.open("", "newwin",
"height=300,width=300,status=yes");
OpenWindow.document.write("<HTML>")
OpenWindow.document.write("<TITLE>")
OpenWindow.document.write("Привет, " +name+ "! Вот ваше
окно!")
OpenWindow.document.write("</TITLE>")
OpenWindow.document.write("<BODY BGCOLOR='green'>")
OpenWindow.document.write("<CENTER>")
OpenWindow.document.write("<h2>Новое окно</h2>")
OpenWindow.document.write("<a href='' onClick='self.close()'>Эта
ссылка закроет окно</a>")
OpenWindow.document.write("</CENTER>")
OpenWindow.document.write("</BODY>")
OpenWindow.document.write("</HTML>")
}
</SCRIPT>
<body bgcolor="xxxxxx" onLoad="openindex()">