<!-- Oslovení dle času -->
<script>
<!--
function printgreeting()
{
var date = new Date();
var hours = date.getHours();
var tod;
if (hours>=00)
{
tod="Váš text";
}
if (hours>=10)
{
tod="Váš text";
}
if (hours>=12)
{
tod="Váš text";
}
if (hours>=13)
{
tod="Váš text";
}
if (hours>=17)
{
tod="Váš text";
}
if (hours>=20)
{
tod="Váš text";
}
if (hours>=22)
{
tod="Váš text";
}
document.writeln('' + tod );
}
-->
</script>
<script language="JavaScript">
<!--
printgreeting();
-->
</script>