﻿<!--

var now = new Date();
var yr = now.getYear();
var mName = now.getMonth() + 1;
var dayNr = ((now.getDate()<10) ? "0" : "")+ now.getDate();

if(mName==1) Month="Ocak";
if(mName==2) Month="Şubat";
if(mName==3) Month="Mart";
if(mName==4) Month="Nisan";
if(mName==5) Month="Mayıs";
if(mName==6) Month="Haziran";
if(mName==7) Month="Temmuz";
if(mName==8) Month="Auğustos";
if(mName==9) Month="Eylül";
if(mName==10) Month="Ekim";
if(mName==11) Month="Kasım";
if(mName==12) Month="Aralık";

 var todaysDate =(" "
       + dayNr
       + " "
       + Month
       + " "
       + yr
       + " "
       + " "
       + "");
document.open();
document.write(todaysDate);
// -->
