רב סוטטסב..םויו..ךיראת..ןועש
<html>
<head>
<title>א"ב בבנית אתרים</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-8">
<script language="JavaScript">
<!-- Hide from old browsers
// Copyright © 1999 Doug Popeney
// Created by Doug Popeney (easyjava@easyjavascipt.com)
// JavaScript Made Easy!! - http://www.easyjavascript.com

var timerID = null
var timerRunning = false
function MakeArray(size)
{
this.length = size;
for(var i = 1; i <= size; i++)
{
this[i] = "";
}
return this;
}

function stopclock (){
if(timerRunning)
clearTimeout(timerID);
timerRunning = false
}

function showtime () {
var now = new Date();
year = new String(now.getYear())
yearLen = year.length
year = year.split("")
year = year[yearLen - 2] + year[yearLen - 1]
var month = now.getMonth() + 1;
var date = now.getDate();
var hours = now.getHours();
var minutes = now.getMinutes();
var seconds = now.getSeconds();
var day = now.getDay();

Day = new MakeArray(7);
Day[0]="SUN";
Day[1]="MON";
Day[2]="TUE";
Day[3]="WED";
Day[4]="THU";
Day[5]="FRI";
Day[6]="SAT";

var timeValue = "";
timeValue += (Day[day]) + " ";
timeValue += ((month < 10) ? " 0" : " ") + month + "-";
timeValue += date + "-" + year + " ";
timeValue += ((hours <= 12) ? hours : hours - 12);
timeValue += ((minutes < 10) ? ":0" : ":") + minutes;
timeValue += ((seconds < 10) ? ":0" : ":") + seconds;
timeValue += (hours < 12) ? " AM" : " PM";
window.status = timeValue;
timerID = setTimeout("showtime()",1000);
timerRunning = true
}

function startclock () {
stopclock();
showtime()
}
// End Hiding -->
</SCRIPT>

<link rel="stylesheet" href="liora3.css">
</head>

<body onLoad="startclock();">
<table width="80%" border="1" cellspacing="2" cellpadding="2" align="center" bgcolor="#ece8cf" bordercolor="#666666" class="bord2">
<tr>
<td align="center"> רב סוטטסב..םויו..ךיראת..ןועש </td>
<tr>
<td align="left">&nbsp;</td>
<tr>
<td align="left">&nbsp;</td>
</table>

</body>
</html>