次のエラー メッセージが表示され続けます。
キャッチされていない SyntaxError: 予期しない識別子
クロックにミリ秒を追加するとき。本から書き写しているので、何が悪いのかわかりません。
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN">
<html>
    <head>
        <title>Event Test</title>
    </head>
    <body>
        <h1>Event Test</h1>
        <script type="text/javascript">
            now = new Date();
            localtime = now.toString();
            utctime = now.toGMTString();
            document.write("<strong>Local time:</strong> " 
            + localtime + "<br/>");
            document.write("<strong>UTC time:</strong> " +
            utctime);
            hours = now.getHours();
            minutes = now.getMinutes();
            seconds = now.getSeconds();
            mil = now.getMilliseconds();
            document.write("<h1>");
            document.write(hours + ":" + minutes + ":" + seconds + ":" mil);
            document.write("</h1>");
        </script>
    </body>
</html>