<!--//

var font = "Verdana,Tahoma";

var fcolor = "gray";

var falign = "left";

var fsize = "1";

var now = new Date();

var month = "";

var year = now.getYear();

var day = "";

var day = now.getDay();

var date = now.getDate();

var time = now.getTime();

if (now.getMonth() == 0) month = "Ocak"

if (now.getMonth() == 1) month = "Şubat"

if (now.getMonth() == 2) month = "Mart"

if (now.getMonth() == 3) month = "Nisan"

if (now.getMonth() == 4) month = "Mayıs"

if (now.getMonth() == 5) month = "Haziran"

if (now.getMonth() == 6) month = "Temmuz"

if (now.getMonth() == 7) month = "Ağustos"

if (now.getMonth() == 8) month = "Eylül"

if (now.getMonth() == 9) month = "Ekim"

if (now.getMonth() == 10) month = "Kasım"

if (now.getMonth() == 11) month = "Aralık"


if (now.getDay() == 0) day = "Pazar"

if (now.getDay() == 1) day = "Pazartesi"

if (now.getDay() == 2) day = "Salı"

if (now.getDay() == 3) day = "Çarşamba"

if (now.getDay() == 4) day = "Perşembe"

if (now.getDay() == 5) day = "Cuma"

if (now.getDay() == 6) day = "Cumartesi"


document.write('<font size="' + fsize + '" face="' + font + '" color="' + fcolor + '" align="' + falign + '">' +'<b>'+ date + " " + month + " " + year + " " + day )

//-->
