<html>
<body>
<head>
<script>
<!--
function updatingClock()
{
jstime = new Date()
hours = jstime.getHours()
if (hours == 12){ampm="pm"}
if (hours > 12){ampm="am"
hours = hours-12}
if (hours < 12){ampm="pm"}
if (hours == 0){hours=12
ampm="am"}
minutes = jstime.getMinutes()
if (minutes<10){minpre = "0"
minpre +=minutes
minutes=minpre}
seconds = jstime.getSeconds()
if (seconds<10){secpre = "0"
secpre +=seconds
seconds=secpre}
timestring = "Bem vindo ao Site Script Fácil - agora são: "
timestring +=hours
timestring +=":"
timestring +=minutes
timestring +=":"
timestring +=seconds
timestring +=ampm
window.status = timestring
timerID=setTimeout("updatingClock()",1000);
}
//-->
</script>
<body onLoad="updatingClock()">
</head>
</body>
</html>