<!-- //

var now   = new Date();
var month = "";
var year  = "";
var day  = "";
var day  = now.getDay();
var date  = now.getDate();
var year = now.getYear();

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('<b><font face=Tahoma,Verdana,Arial,Helvetica,sans-serif style="font-size: 10px" color="#FFFFFF">' + date + " " + month + " " + year + " <br>" + day + "</b><br>")
// -->
