<!--//

var font  = "Verdana,Tahoma";

var fcolor = "#000000";

var falign = "right";

var fsize = "1";

var now   = new Date();

var month = "";

var year  = now.getYear();

var day  = "";

var day  = now.getDay();

var date  = now.getDate();





if (now.getMonth() == 0) month = "01"

if (now.getMonth() == 1) month = "02"

if (now.getMonth() == 2) month = "03"

if (now.getMonth() == 3) month = "04"

if (now.getMonth() == 4) month = "05"

if (now.getMonth() == 5) month = "06"

if (now.getMonth() == 6) month = "07"

if (now.getMonth() == 7) month = "08"

if (now.getMonth() == 8) month = "09"

if (now.getMonth() == 9) month = "10"

if (now.getMonth() == 10) month = "11"

if (now.getMonth() == 11) month = "12"



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(date + ". " + month + ". " + year + " - "  + day)

//-->
