<html>
<head>
<title>Java Script ze stránky - www.jaknaweb.com</title>
</head>
<body>
<SCRIPT language=JavaScript>
<!--
var timeStr;
now= new Date();
hours= now.getHours();
minutes= now.getMinutes();
seconds= now.getSeconds();
timeStr= "" + hours;
timeStr+= ((minutes < 10) ? ":0" : ":") + minutes;
timeStr+= ((seconds < 10) ? ":0" : ":") + seconds;
document.writeln("Na tuto stránku jste přišli v "+ timeStr +"...");
// -->
</SCRIPT>
</body>
</html>