<html>
<head>
<title>Tarih</title>
</head>
<BODY TEXT="#000000" BGCOLOR="#ffffff">
<table border=0 CELLSPACING=0 CELLPADDING=0 WIDTH=90% HEIGHT=90% ALIGN="CENTER" VALIGN="MIDDLE">
<TR>
<TD ALIGN="MIDDLE">
<font face="Tahoma,Verdana,Arial" size="2" COLOR="#767676">
<script language="JavaScript">
<!--
var DayOfWeek = new Array('Pazar','Pazartesi','Sali','Carsamba','Persembe','Cuma','Cumartesi');
var MonthName = new Array('Ocak','Subat','Mart','Nisan','Mayis','Haziran','Temmuz','Agustos','Eylül',
'Ekim','Kasim','Aralik');
var theDate = new Date();
document.write('<NOBR>' +
theDate.getDate() + ' ' +
MonthName[theDate.getMonth()] + ' ' +
(theDate.getYear() < 100 ? theDate.getYear() + 1900 : theDate.getYear()) + ', ' +
DayOfWeek[theDate.getDay()] +
'</NOBR>');
//-->
</script>
</FONT>
</TD>
</TR>
</TABLE>
</body>
</html>