лучше скопировать код и смотреть автономно -- политика запрета всплывающих окон.
<!DOCTYPE HTML>
<html>
<head>
<title>Untitled</title>
</head>
<body>
<script>
var timer;
var wnd;
function showTime()
{ var now = new Date();
wnd.document.open();
wnd.document.write("<h1 align='center'>");
wnd.document.write (now.toLocaleTimeString());
wnd.document.write ("</h1>");
wnd.document.close();
timer = window.setTimeout(showTime, 1000)
}
function startClock()
{
if(!timer)
{
var top = (screen.height-340)/2;
var left = (screen.width-270)/2;
var params = "width=300,height=100,top="+top+",left="+left;
wnd = window.open('','myClockWindow',params)
showTime()
}
}
startClock()
</script>
</body>
</html>
|