

    month = new Array(12);

      month[0]="Ocak"

      month[1]="Şubat"

      month[2]="Mart"

      month[3]="Nisan"

      month[4]="Mayıs"

      month[5]="Haziran"

      month[6]="Temmuz"

      month[7]="Ağustos"

      month[8]="Eylül"

      month[9]="Ekim"

      month[10]="Kasım"

      month[11]="Aralık"



    today=new Date();

    d0=today.getDay();

    m0=today.getMonth();

    d1=today.getDate();

    y0=(today.getFullYear());



document.write(month[m0]," ",d1,", ",y0);